pub struct ProgramIdentifier {
    pub error_code: u8,
    pub identifier_string_id: u16,
}Fields§
§error_code: u8§identifier_string_id: u16Trait Implementations§
Source§impl Clone for ProgramIdentifier
 
impl Clone for ProgramIdentifier
Source§fn clone(&self) -> ProgramIdentifier
 
fn clone(&self) -> ProgramIdentifier
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 ProgramIdentifier
 
impl Debug for ProgramIdentifier
Source§impl Default for ProgramIdentifier
 
impl Default for ProgramIdentifier
Source§fn default() -> ProgramIdentifier
 
fn default() -> ProgramIdentifier
Returns the “default value” for a type. Read more
Source§impl FromByteSlice for ProgramIdentifier
 
impl FromByteSlice for ProgramIdentifier
Source§fn bytes_expected() -> usize
 
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> ProgramIdentifier
 
fn from_le_byte_slice(bytes: &[u8]) -> ProgramIdentifier
Deserialize the implementing type from a byte slice.
Source§impl Hash for ProgramIdentifier
 
impl Hash for ProgramIdentifier
Source§impl PartialEq for ProgramIdentifier
 
impl PartialEq for ProgramIdentifier
impl Copy for ProgramIdentifier
impl Eq for ProgramIdentifier
impl StructuralPartialEq for ProgramIdentifier
Auto Trait Implementations§
impl Freeze for ProgramIdentifier
impl RefUnwindSafe for ProgramIdentifier
impl Send for ProgramIdentifier
impl Sync for ProgramIdentifier
impl Unpin for ProgramIdentifier
impl UnwindSafe for ProgramIdentifier
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