pub enum Conjunction {
Simple(String),
Pair(String, String),
}Expand description
Conjunction for joining node lists.
Variants§
Simple(String)
A single separator used everywhere.
Pair(String, String)
(comma, and) — comma between items, ‘and’ before the last.
Auto Trait Implementations§
impl Freeze for Conjunction
impl RefUnwindSafe for Conjunction
impl Send for Conjunction
impl Sync for Conjunction
impl Unpin for Conjunction
impl UnsafeUnpin for Conjunction
impl UnwindSafe for Conjunction
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