pub struct CipResponse {
pub service: u8,
pub status: u8,
pub additional_status: Vec<u16>,
pub data: Vec<u8>,
}Fields§
§service: u8§status: u8§additional_status: Vec<u16>§data: Vec<u8>Trait Implementations§
Source§impl Clone for CipResponse
impl Clone for CipResponse
Source§fn clone(&self) -> CipResponse
fn clone(&self) -> CipResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CipResponse
impl Debug for CipResponse
Source§impl PartialEq for CipResponse
impl PartialEq for CipResponse
Source§fn eq(&self, other: &CipResponse) -> bool
fn eq(&self, other: &CipResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CipResponse
impl StructuralPartialEq for CipResponse
Auto Trait Implementations§
impl Freeze for CipResponse
impl RefUnwindSafe for CipResponse
impl Send for CipResponse
impl Sync for CipResponse
impl Unpin for CipResponse
impl UnsafeUnpin for CipResponse
impl UnwindSafe for CipResponse
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