pub struct PublishPidConfig {
pub pid_filename: String,
}Expand description
Holds the configuration data for the PID publication. The configuration is loaded from the .toml configuration file. This struct does not contain any implementation.
Fields§
§pid_filename: Stringfilename used for publishing the PID
Trait Implementations§
Source§impl Clone for PublishPidConfig
impl Clone for PublishPidConfig
Source§fn clone(&self) -> PublishPidConfig
fn clone(&self) -> PublishPidConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for PublishPidConfig
impl<'de> Deserialize<'de> for PublishPidConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PublishPidConfig
impl RefUnwindSafe for PublishPidConfig
impl Send for PublishPidConfig
impl Sync for PublishPidConfig
impl Unpin for PublishPidConfig
impl UnwindSafe for PublishPidConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more