pub enum TextItemInner<'req> {
Static(&'static [u8]),
Shared(Shared),
Local(LocalFrameBytesRef<'req>),
}Variants§
Static(&'static [u8])
Local(LocalFrameBytesRef<'req>)
Trait Implementations§
Source§impl<'req> Clone for TextItemInner<'req>
impl<'req> Clone for TextItemInner<'req>
Source§fn clone(&self) -> TextItemInner<'req>
fn clone(&self) -> TextItemInner<'req>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'req> !RefUnwindSafe for TextItemInner<'req>
impl<'req> !Send for TextItemInner<'req>
impl<'req> !Sync for TextItemInner<'req>
impl<'req> !UnwindSafe for TextItemInner<'req>
impl<'req> Freeze for TextItemInner<'req>
impl<'req> Unpin for TextItemInner<'req>
impl<'req> UnsafeUnpin for TextItemInner<'req>
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