pub struct IpcField {
pub fields: Vec<IpcField>,
pub dictionary_id: Option<i64>,
}
Expand description
Struct containing dictionary_id
and nested IpcField
, allowing users
to specify the dictionary ids of the IPC fields when writing to IPC.
Fields§
§fields: Vec<IpcField>
optional children
dictionary_id: Option<i64>
dictionary id
Trait Implementations§
source§impl PartialEq for IpcField
impl PartialEq for IpcField
impl StructuralPartialEq for IpcField
Auto Trait Implementations§
impl Freeze for IpcField
impl RefUnwindSafe for IpcField
impl Send for IpcField
impl Sync for IpcField
impl Unpin for IpcField
impl UnwindSafe for IpcField
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