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