pub enum BitRate {
_1200,
_2400,
_4800,
_9600,
_19200,
_38400,
_57600,
_115200,
_230400,
}
Variants§
_1200
A bit rate of 1200 bit/s.
_2400
A bit rate of 2400 bit/s.
_4800
A bit rate of 4800 bit/s.
_9600
A bit rate of 9600 bit/s.
_19200
A bit rate of 19200 bit/s.
_38400
A bit rate of 38400 bit/s.
_57600
A bit rate of 57600 bit/s.
_115200
A bit rate of 115200 bit/s.
_230400
A bit rate of 230400 bit/s.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BitRate
impl<'de> Deserialize<'de> for BitRate
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 Metadata<'static> for BitRate
impl Metadata<'static> for BitRate
Source§const JSON_SCHEMA: &'static str = "SerialInterface.v1_1_8.json"
const JSON_SCHEMA: &'static str = "SerialInterface.v1_1_8.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for BitRate
impl RefUnwindSafe for BitRate
impl Send for BitRate
impl Sync for BitRate
impl Unpin for BitRate
impl UnwindSafe for BitRate
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