pub struct SerialConfig {
pub file: Option<String>,
pub socket: Option<String>,
pub mode: ConsoleMode,
}Fields§
§file: Option<String>§socket: Option<String>§mode: ConsoleModeImplementations§
Source§impl SerialConfig
impl SerialConfig
pub fn new(mode: ConsoleMode) -> SerialConfig
Trait Implementations§
Source§impl Clone for SerialConfig
impl Clone for SerialConfig
Source§fn clone(&self) -> SerialConfig
fn clone(&self) -> SerialConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SerialConfig
impl Debug for SerialConfig
Source§impl Default for SerialConfig
impl Default for SerialConfig
Source§fn default() -> SerialConfig
fn default() -> SerialConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SerialConfig
impl<'de> Deserialize<'de> for SerialConfig
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
Source§impl PartialEq for SerialConfig
impl PartialEq for SerialConfig
Source§fn eq(&self, other: &SerialConfig) -> bool
fn eq(&self, other: &SerialConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SerialConfig
impl Serialize for SerialConfig
impl StructuralPartialEq for SerialConfig
Auto Trait Implementations§
impl Freeze for SerialConfig
impl RefUnwindSafe for SerialConfig
impl Send for SerialConfig
impl Sync for SerialConfig
impl Unpin for SerialConfig
impl UnsafeUnpin for SerialConfig
impl UnwindSafe for SerialConfig
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