pub struct PowerShellHashtableEntry {
pub key: Box<PowerShellExpression>,
pub value: Box<PowerShellExpression>,
}Expand description
PowerShell 哈希表条目
Fields§
§key: Box<PowerShellExpression>§value: Box<PowerShellExpression>Trait Implementations§
Source§impl Clone for PowerShellHashtableEntry
impl Clone for PowerShellHashtableEntry
Source§fn clone(&self) -> PowerShellHashtableEntry
fn clone(&self) -> PowerShellHashtableEntry
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 PowerShellHashtableEntry
impl Debug for PowerShellHashtableEntry
Source§impl<'de> Deserialize<'de> for PowerShellHashtableEntry
impl<'de> Deserialize<'de> for PowerShellHashtableEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PowerShellHashtableEntry
impl PartialEq for PowerShellHashtableEntry
Source§impl Serialize for PowerShellHashtableEntry
impl Serialize for PowerShellHashtableEntry
impl StructuralPartialEq for PowerShellHashtableEntry
Auto Trait Implementations§
impl Freeze for PowerShellHashtableEntry
impl RefUnwindSafe for PowerShellHashtableEntry
impl Send for PowerShellHashtableEntry
impl Sync for PowerShellHashtableEntry
impl Unpin for PowerShellHashtableEntry
impl UnwindSafe for PowerShellHashtableEntry
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