pub enum System<'a> {
Reset,
SetTime {
hhmmss: &'a str,
ddmmyy: &'a str,
},
SetGateway(&'a str),
SetIp(&'a str),
ResetIpAndGateway {
ip: &'a str,
gateway: &'a str,
},
Raw(&'a [u8]),
}Variants§
Trait Implementations§
impl<'a> Copy for System<'a>
impl<'a> Eq for System<'a>
impl<'a> StructuralPartialEq for System<'a>
Auto Trait Implementations§
impl<'a> Freeze for System<'a>
impl<'a> RefUnwindSafe for System<'a>
impl<'a> Send for System<'a>
impl<'a> Sync for System<'a>
impl<'a> Unpin for System<'a>
impl<'a> UnsafeUnpin for System<'a>
impl<'a> UnwindSafe for System<'a>
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