pub struct EmbeddedConfig {
pub tick_rate_hz: u32,
pub stack_size: usize,
}Expand description
Embedded system configuration
Fields§
§tick_rate_hz: u32§stack_size: usizeTrait Implementations§
Source§impl Clone for EmbeddedConfig
impl Clone for EmbeddedConfig
Source§fn clone(&self) -> EmbeddedConfig
fn clone(&self) -> EmbeddedConfig
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 Debug for EmbeddedConfig
impl Debug for EmbeddedConfig
Auto Trait Implementations§
impl Freeze for EmbeddedConfig
impl RefUnwindSafe for EmbeddedConfig
impl Send for EmbeddedConfig
impl Sync for EmbeddedConfig
impl Unpin for EmbeddedConfig
impl UnwindSafe for EmbeddedConfig
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