pub struct PlainTermArrayParts<'array> {
pub struct_array: &'array StructArray,
pub term_type: &'array UInt8Array,
pub value: &'array StringArray,
pub data_type: &'array StringArray,
pub language_tag: &'array StringArray,
}
Expand description
Holds the parts of a PlainTermArray.
Fields§
§struct_array: &'array StructArray
§term_type: &'array UInt8Array
§value: &'array StringArray
§data_type: &'array StringArray
§language_tag: &'array StringArray
Auto Trait Implementations§
impl<'array> Freeze for PlainTermArrayParts<'array>
impl<'array> !RefUnwindSafe for PlainTermArrayParts<'array>
impl<'array> Send for PlainTermArrayParts<'array>
impl<'array> Sync for PlainTermArrayParts<'array>
impl<'array> Unpin for PlainTermArrayParts<'array>
impl<'array> !UnwindSafe for PlainTermArrayParts<'array>
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> 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