pub enum Operand {
E(Expr),
S(String),
}Variants§
Implementations§
Source§impl Operand
impl Operand
pub fn len(&self) -> usize
pub fn get_bytes(&self, e_p: &dyn Context) -> Result<Vec<u8>, Error>
pub fn get_words(&self, e_p: &dyn Context) -> Result<Vec<u8>, Error>
pub fn get_double_words(&self, e_p: &dyn Context) -> Result<Vec<u8>, Error>
pub fn get_quad_words(&self, e_p: &dyn Context) -> Result<Vec<u8>, Error>
Trait Implementations§
impl Eq for Operand
impl StructuralPartialEq for Operand
Auto Trait Implementations§
impl Freeze for Operand
impl RefUnwindSafe for Operand
impl Send for Operand
impl Sync for Operand
impl Unpin for Operand
impl UnwindSafe for Operand
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