pub enum IRRepeaterState {
On,
Off,
Disabled,
Unspecified(String),
}Variants§
On
Off
Disabled
Unspecified(String)
Allows passing a value that was not known at the time that this crate was generated from the available device descriptions
Trait Implementations§
Source§impl Clone for IRRepeaterState
impl Clone for IRRepeaterState
Source§fn clone(&self) -> IRRepeaterState
fn clone(&self) -> IRRepeaterState
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 IRRepeaterState
impl Debug for IRRepeaterState
Source§impl Default for IRRepeaterState
impl Default for IRRepeaterState
Source§fn default() -> IRRepeaterState
fn default() -> IRRepeaterState
Returns the “default value” for a type. Read more
Source§impl FromStr for IRRepeaterState
impl FromStr for IRRepeaterState
Source§impl<'xml> FromXml<'xml> for IRRepeaterState
impl<'xml> FromXml<'xml> for IRRepeaterState
const KIND: Kind = instant_xml::Kind::Scalar
type Accumulator = Option<IRRepeaterState>
fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
fn deserialize<'cx>( into: &mut Self::Accumulator, field: &'static str, deserializer: &mut Deserializer<'cx, 'xml>, ) -> Result<(), Error>
Source§impl PartialEq for IRRepeaterState
impl PartialEq for IRRepeaterState
Source§impl ToString for IRRepeaterState
impl ToString for IRRepeaterState
Source§impl ToXml for IRRepeaterState
impl ToXml for IRRepeaterState
impl Eq for IRRepeaterState
impl StructuralPartialEq for IRRepeaterState
Auto Trait Implementations§
impl Freeze for IRRepeaterState
impl RefUnwindSafe for IRRepeaterState
impl Send for IRRepeaterState
impl Sync for IRRepeaterState
impl Unpin for IRRepeaterState
impl UnwindSafe for IRRepeaterState
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