pub enum TextReference {
Url(String),
Inline(TextSource),
}Variants§
Url(String)
Inline(TextSource)
Trait Implementations§
Source§impl Clone for TextReference
impl Clone for TextReference
Source§fn clone(&self) -> TextReference
fn clone(&self) -> TextReference
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for TextReference
impl RefUnwindSafe for TextReference
impl Send for TextReference
impl Sync for TextReference
impl Unpin for TextReference
impl UnwindSafe for TextReference
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