pub struct PowerShellBinaryOp {
pub left: Box<PowerShellExpression>,
pub operator: PowerShellBinaryOperator,
pub right: Box<PowerShellExpression>,
}Expand description
PowerShell 二元操作
Fields§
§left: Box<PowerShellExpression>§operator: PowerShellBinaryOperator§right: Box<PowerShellExpression>Trait Implementations§
Source§impl Clone for PowerShellBinaryOp
impl Clone for PowerShellBinaryOp
Source§fn clone(&self) -> PowerShellBinaryOp
fn clone(&self) -> PowerShellBinaryOp
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 PowerShellBinaryOp
impl Debug for PowerShellBinaryOp
Source§impl<'de> Deserialize<'de> for PowerShellBinaryOp
impl<'de> Deserialize<'de> for PowerShellBinaryOp
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 PowerShellBinaryOp
impl PartialEq for PowerShellBinaryOp
Source§impl Serialize for PowerShellBinaryOp
impl Serialize for PowerShellBinaryOp
impl StructuralPartialEq for PowerShellBinaryOp
Auto Trait Implementations§
impl Freeze for PowerShellBinaryOp
impl RefUnwindSafe for PowerShellBinaryOp
impl Send for PowerShellBinaryOp
impl Sync for PowerShellBinaryOp
impl Unpin for PowerShellBinaryOp
impl UnwindSafe for PowerShellBinaryOp
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