pub enum NestedInteger {
Int(i32),
List(Vec<NestedInteger>),
}
Variants§
Int(i32)
List(Vec<NestedInteger>)
Trait Implementations§
Source§impl Debug for NestedInteger
impl Debug for NestedInteger
Source§impl PartialEq for NestedInteger
impl PartialEq for NestedInteger
impl Eq for NestedInteger
impl StructuralPartialEq for NestedInteger
Auto Trait Implementations§
impl Freeze for NestedInteger
impl RefUnwindSafe for NestedInteger
impl Send for NestedInteger
impl Sync for NestedInteger
impl Unpin for NestedInteger
impl UnwindSafe for NestedInteger
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