pub enum InputDeviceType {
CAMERA,
MICROPHONE,
}
Variants§
Trait Implementations§
Source§impl Clone for InputDeviceType
impl Clone for InputDeviceType
Source§fn clone(&self) -> InputDeviceType
fn clone(&self) -> InputDeviceType
Returns a copy 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 InputDeviceType
impl Debug for InputDeviceType
Source§impl<'de> Deserialize<'de> for InputDeviceType
impl<'de> Deserialize<'de> for InputDeviceType
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 Display for InputDeviceType
Instead of defining our own fmt function, an easier way
is to derive the ‘Display’ trait for enums using enum-display-derive
crate
impl Display for InputDeviceType
Instead of defining our own fmt function, an easier way
is to derive the ‘Display’ trait for enums using enum-display-derive
crate
https://docs.rs/enum-display-derive/0.1.0/enum_display_derive/
Since addition of this in third_party/rust_crates needs OSRB approval, we define our own function here.
Source§impl From<DeviceType> for InputDeviceType
impl From<DeviceType> for InputDeviceType
Source§fn from(device_type: FidlDeviceType) -> Self
fn from(device_type: FidlDeviceType) -> Self
Converts to this type from the input type.
Source§impl From<InputDeviceType> for DeviceType
impl From<InputDeviceType> for DeviceType
Source§fn from(device_type: InputDeviceType) -> Self
fn from(device_type: InputDeviceType) -> Self
Converts to this type from the input type.
Source§impl Hash for InputDeviceType
impl Hash for InputDeviceType
Source§impl PartialEq for InputDeviceType
impl PartialEq for InputDeviceType
Source§impl Serialize for InputDeviceType
impl Serialize for InputDeviceType
impl Copy for InputDeviceType
impl Eq for InputDeviceType
impl StructuralPartialEq for InputDeviceType
Auto Trait Implementations§
impl Freeze for InputDeviceType
impl RefUnwindSafe for InputDeviceType
impl Send for InputDeviceType
impl Sync for InputDeviceType
impl Unpin for InputDeviceType
impl UnwindSafe for InputDeviceType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> IntoAny for T
impl<T> IntoAny for T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more