pub enum Indefinite {
ByteString(Vec<ByteString>),
TextString(Vec<TextString>),
Array(Array),
Map(Map),
}Expand description
Indefinite-length bytestrings, textstrings, arrays, and maps.
Variants§
Trait Implementations§
Source§impl Clone for Indefinite
impl Clone for Indefinite
Source§fn clone(&self) -> Indefinite
fn clone(&self) -> Indefinite
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 Indefinite
impl Debug for Indefinite
Source§impl PartialEq for Indefinite
impl PartialEq for Indefinite
impl StructuralPartialEq for Indefinite
Auto Trait Implementations§
impl Freeze for Indefinite
impl RefUnwindSafe for Indefinite
impl Send for Indefinite
impl Sync for Indefinite
impl Unpin for Indefinite
impl UnwindSafe for Indefinite
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