#[repr(C)]pub struct IPLSerializedObjectSettings {
pub data: *mut IPLbyte,
pub size: IPLsize,
}Expand description
Settings used to create a serialized object.
Fields§
§data: *mut IPLbyteIf non-NULL, the serialized object will contain the data in this buffer. If NULL, the serialized object will start out empty.
size: IPLsizeThe number of bytes in the buffer pointed to by \c data. Set to 0 if \c data is NULL.
Trait Implementations§
Source§impl Clone for IPLSerializedObjectSettings
impl Clone for IPLSerializedObjectSettings
Source§fn clone(&self) -> IPLSerializedObjectSettings
fn clone(&self) -> IPLSerializedObjectSettings
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 IPLSerializedObjectSettings
impl Debug for IPLSerializedObjectSettings
impl Copy for IPLSerializedObjectSettings
Auto Trait Implementations§
impl Freeze for IPLSerializedObjectSettings
impl RefUnwindSafe for IPLSerializedObjectSettings
impl !Send for IPLSerializedObjectSettings
impl !Sync for IPLSerializedObjectSettings
impl Unpin for IPLSerializedObjectSettings
impl UnwindSafe for IPLSerializedObjectSettings
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