struct Source {
    array: ArrayRef,
    need_gc: bool,
    ideal_buffer_size: usize,
}Fields§
§array: ArrayRefThe array to copy form
need_gc: boolShould the strings from the source array be copied into new buffers?
ideal_buffer_size: usizeHow many bytes were actually used in the source array’s buffers?
Auto Trait Implementations§
impl Freeze for Source
impl !RefUnwindSafe for Source
impl Send for Source
impl Sync for Source
impl Unpin for Source
impl !UnwindSafe for Source
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