pub struct LargeBinary {}Expand description
Same as Binary, but with 64-bit offsets, allowing to represent extremely large data values.
Generated from these locations:
- Table
LargeBinaryin the fileSchema.fbs:185
Implementations§
Source§impl LargeBinary
impl LargeBinary
Sourcepub fn builder() -> LargeBinaryBuilder<()>
pub fn builder() -> LargeBinaryBuilder<()>
Creates a LargeBinaryBuilder for serializing an instance of this table.
pub fn create(builder: &mut Builder) -> Offset<Self>
Trait Implementations§
Source§impl Clone for LargeBinary
impl Clone for LargeBinary
Source§fn clone(&self) -> LargeBinary
fn clone(&self) -> LargeBinary
Returns a copy 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 LargeBinary
impl Debug for LargeBinary
Source§impl Default for LargeBinary
impl Default for LargeBinary
Source§impl<'de> Deserialize<'de> for LargeBinary
impl<'de> Deserialize<'de> for LargeBinary
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
Source§impl Hash for LargeBinary
impl Hash for LargeBinary
Source§impl Ord for LargeBinary
impl Ord for LargeBinary
Source§fn cmp(&self, other: &LargeBinary) -> Ordering
fn cmp(&self, other: &LargeBinary) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LargeBinary
impl PartialEq for LargeBinary
Source§impl PartialOrd for LargeBinary
impl PartialOrd for LargeBinary
Source§impl Serialize for LargeBinary
impl Serialize for LargeBinary
Source§impl<'a> TryFrom<LargeBinaryRef<'a>> for LargeBinary
impl<'a> TryFrom<LargeBinaryRef<'a>> for LargeBinary
impl Eq for LargeBinary
impl StructuralPartialEq for LargeBinary
impl VectorWrite<Offset<LargeBinary>> for LargeBinary
§Safety
The planus compiler generates implementations that initialize
the bytes in write_values.
impl WriteAs<Offset<LargeBinary>> for LargeBinary
impl WriteAsOffset<LargeBinary> for LargeBinary
impl WriteAsOffset<LargeBinary> for LargeBinaryBuilder<()>
impl WriteAsOptional<Offset<LargeBinary>> for LargeBinary
Auto Trait Implementations§
impl Freeze for LargeBinary
impl RefUnwindSafe for LargeBinary
impl Send for LargeBinary
impl Sync for LargeBinary
impl Unpin for LargeBinary
impl UnwindSafe for LargeBinary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more