pub struct SortableTermArrayBuilder { /* private fields */ }
Implementations§
Source§impl SortableTermArrayBuilder
impl SortableTermArrayBuilder
pub fn new(capacity: usize) -> Self
pub fn append_null(&mut self)
pub fn append_boolean(&mut self, value: Boolean)
pub fn append_numeric(&mut self, value: Numeric, original_be_bytes: &[u8])
pub fn append_blank_node(&mut self, value: BlankNodeRef<'_>)
pub fn append_named_node(&mut self, value: NamedNodeRef<'_>)
pub fn append_string(&mut self, value: &str)
pub fn append_date_time(&mut self, value: DateTime)
pub fn append_time(&mut self, value: Time)
pub fn append_date(&mut self, value: Date)
pub fn append_duration(&mut self, value: Duration)
pub fn append_year_month_duration(&mut self, value: YearMonthDuration)
pub fn append_day_time_duration(&mut self, value: DayTimeDuration)
pub fn append_literal(&mut self, literal: LiteralRef<'_>)
pub fn finish(self) -> ArrayRef
Auto Trait Implementations§
impl Freeze for SortableTermArrayBuilder
impl !RefUnwindSafe for SortableTermArrayBuilder
impl Send for SortableTermArrayBuilder
impl Sync for SortableTermArrayBuilder
impl Unpin for SortableTermArrayBuilder
impl !UnwindSafe for SortableTermArrayBuilder
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