pub struct Config {Show 20 fields
pub my_flag: bool,
pub my_int16: i16,
pub my_int32: i32,
pub my_int64: i64,
pub my_int8: i8,
pub my_string: String,
pub my_uint16: u16,
pub my_uint32: u32,
pub my_uint64: u64,
pub my_uint8: u8,
pub my_vector_of_flag: Vec<bool>,
pub my_vector_of_int16: Vec<i16>,
pub my_vector_of_int32: Vec<i32>,
pub my_vector_of_int64: Vec<i64>,
pub my_vector_of_int8: Vec<i8>,
pub my_vector_of_string: Vec<String>,
pub my_vector_of_uint16: Vec<u16>,
pub my_vector_of_uint32: Vec<u32>,
pub my_vector_of_uint64: Vec<u64>,
pub my_vector_of_uint8: Vec<u8>,
}
Fields§
§my_flag: bool
§my_int16: i16
§my_int32: i32
§my_int64: i64
§my_int8: i8
§my_string: String
§my_uint16: u16
§my_uint32: u32
§my_uint64: u64
§my_uint8: u8
§my_vector_of_flag: Vec<bool>
§my_vector_of_int16: Vec<i16>
§my_vector_of_int32: Vec<i32>
§my_vector_of_int64: Vec<i64>
§my_vector_of_int8: Vec<i8>
§my_vector_of_string: Vec<String>
§my_vector_of_uint16: Vec<u16>
§my_vector_of_uint32: Vec<u32>
§my_vector_of_uint64: Vec<u64>
§my_vector_of_uint8: Vec<u8>
Implementations§
Source§impl Config
impl Config
pub fn take_from_startup_handle() -> Self
pub fn record_inspect(&self, inspector_node: &Node)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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