#[repr(C)]pub struct VarLongStringArray {
pub long_length: u32,
pub long_sequence: *mut TangoDevLong,
pub string_length: u32,
pub string_sequence: *mut *mut c_char,
}
Fields§
§long_length: u32
§long_sequence: *mut TangoDevLong
§string_length: u32
§string_sequence: *mut *mut c_char
Trait Implementations§
Source§impl Clone for VarLongStringArray
impl Clone for VarLongStringArray
Source§fn clone(&self) -> VarLongStringArray
fn clone(&self) -> VarLongStringArray
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 VarLongStringArray
impl Debug for VarLongStringArray
impl Copy for VarLongStringArray
Auto Trait Implementations§
impl Freeze for VarLongStringArray
impl RefUnwindSafe for VarLongStringArray
impl !Send for VarLongStringArray
impl !Sync for VarLongStringArray
impl Unpin for VarLongStringArray
impl UnwindSafe for VarLongStringArray
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