pub enum Variant {
String(String),
Boolean(bool),
Int64(i64),
Map(HashMap<String, Variant>),
MapList(Vec<HashMap<String, Variant>>),
}Expand description
GVariant types used by Frida
Variants§
String(String)
String
Boolean(bool)
Boolean value
Int64(i64)
Integer value
Map(HashMap<String, Variant>)
Map
MapList(Vec<HashMap<String, Variant>>)
Array of Maps
Implementations§
Trait Implementations§
impl Eq for Variant
impl StructuralPartialEq for Variant
Auto Trait Implementations§
impl Freeze for Variant
impl RefUnwindSafe for Variant
impl Send for Variant
impl Sync for Variant
impl Unpin for Variant
impl UnwindSafe for Variant
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