pub struct PowerShellVariable {
pub name: String,
pub scope: Option<String>,
}Expand description
PowerShell 变量
Fields§
§name: String§scope: Option<String>Trait Implementations§
Source§impl Clone for PowerShellVariable
impl Clone for PowerShellVariable
Source§fn clone(&self) -> PowerShellVariable
fn clone(&self) -> PowerShellVariable
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 PowerShellVariable
impl Debug for PowerShellVariable
Source§impl<'de> Deserialize<'de> for PowerShellVariable
impl<'de> Deserialize<'de> for PowerShellVariable
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 PowerShellVariable
impl PartialEq for PowerShellVariable
Source§impl Serialize for PowerShellVariable
impl Serialize for PowerShellVariable
impl StructuralPartialEq for PowerShellVariable
Auto Trait Implementations§
impl Freeze for PowerShellVariable
impl RefUnwindSafe for PowerShellVariable
impl Send for PowerShellVariable
impl Sync for PowerShellVariable
impl Unpin for PowerShellVariable
impl UnwindSafe for PowerShellVariable
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