pub enum ScoConnectionParametersMissingFieldError {
ParameterSet,
AirCodingFormat,
AirFrameSize,
IoBandwidth,
IoCodingFormat,
IoFrameSize,
Path,
}Expand description
Missing fields in ScoConnectionParameters.
Variants§
ParameterSet
parameter_set is missing.
AirCodingFormat
air_coding_format is missing.
AirFrameSize
air_frame_size is missing.
IoBandwidth
io_bandwidth is missing.
IoCodingFormat
io_coding_format is missing.
IoFrameSize
io_frame_size is missing.
Path
path is missing.
Trait Implementations§
Source§impl Clone for ScoConnectionParametersMissingFieldError
impl Clone for ScoConnectionParametersMissingFieldError
Source§fn clone(&self) -> ScoConnectionParametersMissingFieldError
fn clone(&self) -> ScoConnectionParametersMissingFieldError
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 From<ScoConnectionParametersMissingFieldError> for ScoConnectionParametersValidationError
impl From<ScoConnectionParametersMissingFieldError> for ScoConnectionParametersValidationError
Source§fn from(src: ScoConnectionParametersMissingFieldError) -> Self
fn from(src: ScoConnectionParametersMissingFieldError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ScoConnectionParametersMissingFieldError
impl PartialEq for ScoConnectionParametersMissingFieldError
Source§fn eq(&self, other: &ScoConnectionParametersMissingFieldError) -> bool
fn eq(&self, other: &ScoConnectionParametersMissingFieldError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ScoConnectionParametersMissingFieldError
impl StructuralPartialEq for ScoConnectionParametersMissingFieldError
Auto Trait Implementations§
impl Freeze for ScoConnectionParametersMissingFieldError
impl RefUnwindSafe for ScoConnectionParametersMissingFieldError
impl Send for ScoConnectionParametersMissingFieldError
impl Sync for ScoConnectionParametersMissingFieldError
impl Unpin for ScoConnectionParametersMissingFieldError
impl UnwindSafe for ScoConnectionParametersMissingFieldError
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,
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