pub enum PklValue {
String(String),
Integer(i64),
Float(f64),
Boolean(bool),
Object(HashMap<String, PklValue>),
Array(Vec<PklValue>),
}Variants§
String(String)
Integer(i64)
Float(f64)
Boolean(bool)
Object(HashMap<String, PklValue>)
Array(Vec<PklValue>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PklValue
impl RefUnwindSafe for PklValue
impl Send for PklValue
impl Sync for PklValue
impl Unpin for PklValue
impl UnwindSafe for PklValue
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