pub struct EntryAssignment {
pub entry_name: String,
pub entry_type: EntryType,
pub entry_id: u16,
pub entry_seqnum: u16,
pub entry_flags: u8,
pub entry_value: EntryValue,
}
Fields§
§entry_name: String
§entry_type: EntryType
§entry_id: u16
§entry_seqnum: u16
§entry_flags: u8
§entry_value: EntryValue
Implementations§
Source§impl EntryAssignment
impl EntryAssignment
pub fn new( entry_name: String, entry_type: EntryType, entry_id: u16, entry_seqnum: u16, entry_flags: u8, entry_value: EntryValue, ) -> EntryAssignment
Trait Implementations§
Source§impl Clone for EntryAssignment
impl Clone for EntryAssignment
Source§fn clone(&self) -> EntryAssignment
fn clone(&self) -> EntryAssignment
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 EntryAssignment
impl Debug for EntryAssignment
Auto Trait Implementations§
impl Freeze for EntryAssignment
impl RefUnwindSafe for EntryAssignment
impl Send for EntryAssignment
impl Sync for EntryAssignment
impl Unpin for EntryAssignment
impl UnwindSafe for EntryAssignment
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