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