pub struct SendPropData {
pub sendprop_type: Option<u64>,
pub var_name: Option<String>,
pub flags: Option<u64>,
pub priority: Option<u64>,
pub dt_name: Option<String>,
pub num_elements: Option<u64>,
pub low_value: Option<u32>,
pub high_value: Option<u32>,
pub num_bits: Option<u64>,
}
Fields§
§sendprop_type: Option<u64>
§var_name: Option<String>
§flags: Option<u64>
§priority: Option<u64>
§dt_name: Option<String>
§num_elements: Option<u64>
§low_value: Option<u32>
§high_value: Option<u32>
§num_bits: Option<u64>
Implementations§
Source§impl SendPropData
impl SendPropData
pub fn to_vec(&self) -> Vec<(&'static str, ProtobufValue)>
Trait Implementations§
Source§impl Clone for SendPropData
impl Clone for SendPropData
Source§fn clone(&self) -> SendPropData
fn clone(&self) -> SendPropData
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for SendPropData
impl RefUnwindSafe for SendPropData
impl Send for SendPropData
impl Sync for SendPropData
impl Unpin for SendPropData
impl UnwindSafe for SendPropData
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