pub enum PowerShellBinaryOperator {
Show 25 variants
Add,
Subtract,
Multiply,
Divide,
Modulo,
Equal,
NotEqual,
Less,
LessEqual,
Greater,
GreaterEqual,
Like,
NotLike,
Match,
NotMatch,
Contains,
NotContains,
In,
NotIn,
And,
Or,
Xor,
BitwiseAnd,
BitwiseOr,
BitwiseXor,
}Expand description
PowerShell 二元操作符
Variants§
Add
Subtract
Multiply
Divide
Modulo
Equal
NotEqual
Less
LessEqual
Greater
GreaterEqual
Like
NotLike
Match
NotMatch
Contains
NotContains
In
NotIn
And
Or
Xor
BitwiseAnd
BitwiseOr
BitwiseXor
Trait Implementations§
Source§impl Clone for PowerShellBinaryOperator
impl Clone for PowerShellBinaryOperator
Source§fn clone(&self) -> PowerShellBinaryOperator
fn clone(&self) -> PowerShellBinaryOperator
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 PowerShellBinaryOperator
impl Debug for PowerShellBinaryOperator
Source§impl<'de> Deserialize<'de> for PowerShellBinaryOperator
impl<'de> Deserialize<'de> for PowerShellBinaryOperator
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 PowerShellBinaryOperator
impl PartialEq for PowerShellBinaryOperator
Source§impl Serialize for PowerShellBinaryOperator
impl Serialize for PowerShellBinaryOperator
impl StructuralPartialEq for PowerShellBinaryOperator
Auto Trait Implementations§
impl Freeze for PowerShellBinaryOperator
impl RefUnwindSafe for PowerShellBinaryOperator
impl Send for PowerShellBinaryOperator
impl Sync for PowerShellBinaryOperator
impl Unpin for PowerShellBinaryOperator
impl UnwindSafe for PowerShellBinaryOperator
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