pub enum PsValue {
Null,
Bool(bool),
Int(i64),
Float(f64),
Char(u32),
String(String),
Array(Vec<PsValue>),
HashTable(HashMap<String, PsValue>),
}
Expand description
Represents a PowerShell value that can be stored and manipulated.
This enum covers all the basic PowerShell data types including primitives, collections, and complex objects like script blocks and hash tables.
§Examples
use ps_parser::PsValue;
// Different value types
let int_val = PsValue::Int(42);
let string_val = PsValue::String("Hello".into());
let bool_val = PsValue::Bool(true);
Variants§
Null
Bool(bool)
Int(i64)
Float(f64)
Char(u32)
String(String)
Array(Vec<PsValue>)
HashTable(HashMap<String, PsValue>)
Implementations§
Trait Implementations§
impl StructuralPartialEq for PsValue
Auto Trait Implementations§
impl Freeze for PsValue
impl RefUnwindSafe for PsValue
impl Send for PsValue
impl Sync for PsValue
impl Unpin for PsValue
impl UnwindSafe for PsValue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more