pub struct FillValueMessage {
pub value: Option<Vec<u8>>,
pub fill_time: u8,
}Expand description
Fill value message — specifies the default value for uninitialized data.
Message type 0x0005.
Fields§
§value: Option<Vec<u8>>Raw fill value bytes (interpretation depends on the dataset’s data type). None if fill value is undefined.
fill_time: u8Fill time: 0=on allocation, 1=never, 2=if set by user.
Implementations§
Trait Implementations§
Source§impl Clone for FillValueMessage
impl Clone for FillValueMessage
Source§fn clone(&self) -> FillValueMessage
fn clone(&self) -> FillValueMessage
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 moreAuto Trait Implementations§
impl Freeze for FillValueMessage
impl RefUnwindSafe for FillValueMessage
impl Send for FillValueMessage
impl Sync for FillValueMessage
impl Unpin for FillValueMessage
impl UnsafeUnpin for FillValueMessage
impl UnwindSafe for FillValueMessage
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