pub enum ListSource {
Literal(Vec<String>),
Variable(String),
}Variants§
Trait Implementations§
Source§impl Clone for ListSource
impl Clone for ListSource
Source§fn clone(&self) -> ListSource
fn clone(&self) -> ListSource
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 moreSource§impl Debug for ListSource
impl Debug for ListSource
Source§impl PartialEq for ListSource
impl PartialEq for ListSource
impl StructuralPartialEq for ListSource
Auto Trait Implementations§
impl Freeze for ListSource
impl RefUnwindSafe for ListSource
impl Send for ListSource
impl Sync for ListSource
impl Unpin for ListSource
impl UnsafeUnpin for ListSource
impl UnwindSafe for ListSource
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