pub struct NonSupportedCommandParams {
pub cr_bit: bool,
pub non_supported_command: u8,
}Expand description
This response is sent whenever a command type is not supported by the device. Defined in GSM 7.10 Section 5.4.6.3.8.
Fields§
§cr_bit: boolThe C/R bit is set to the same value as the C/R bit in the non-supported command.
non_supported_command: u8The non_supported command.
Trait Implementations§
Source§impl Clone for NonSupportedCommandParams
impl Clone for NonSupportedCommandParams
Source§fn clone(&self) -> NonSupportedCommandParams
fn clone(&self) -> NonSupportedCommandParams
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 NonSupportedCommandParams
impl Debug for NonSupportedCommandParams
Source§impl Decodable for NonSupportedCommandParams
impl Decodable for NonSupportedCommandParams
type Error = FrameParseError
Source§impl Encodable for NonSupportedCommandParams
impl Encodable for NonSupportedCommandParams
type Error = FrameParseError
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the number of bytes necessary to encode |self|.
impl StructuralPartialEq for NonSupportedCommandParams
Auto Trait Implementations§
impl Freeze for NonSupportedCommandParams
impl RefUnwindSafe for NonSupportedCommandParams
impl Send for NonSupportedCommandParams
impl Sync for NonSupportedCommandParams
impl Unpin for NonSupportedCommandParams
impl UnwindSafe for NonSupportedCommandParams
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,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§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