pub struct BinaryArray {
pub object_id: i32,
pub binary_array_type_enum: u8,
pub rank: i32,
pub lengths: Vec<i32>,
pub lower_bounds: Option<Vec<i32>>,
pub type_enum: BinaryType,
pub additional_type_info: AdditionalTypeInfo,
pub element_values: Vec<ObjectValue>,
}Fields§
§object_id: i32§binary_array_type_enum: u8§rank: i32§lengths: Vec<i32>§lower_bounds: Option<Vec<i32>>§type_enum: BinaryType§additional_type_info: AdditionalTypeInfo§element_values: Vec<ObjectValue>Trait Implementations§
Source§impl Clone for BinaryArray
impl Clone for BinaryArray
Source§fn clone(&self) -> BinaryArray
fn clone(&self) -> BinaryArray
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 BinaryArray
impl Debug for BinaryArray
Source§impl<'de> Deserialize<'de> for BinaryArray
impl<'de> Deserialize<'de> for BinaryArray
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BinaryArray
impl RefUnwindSafe for BinaryArray
impl Send for BinaryArray
impl Sync for BinaryArray
impl Unpin for BinaryArray
impl UnwindSafe for BinaryArray
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