pub struct AplAssignment {
pub name: String,
pub expression: String,
}Expand description
APL assignment.
Fields§
§name: StringVariable name.
expression: StringExpression.
Implementations§
Trait Implementations§
Source§impl Clone for AplAssignment
impl Clone for AplAssignment
Source§fn clone(&self) -> AplAssignment
fn clone(&self) -> AplAssignment
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 AplAssignment
impl Debug for AplAssignment
Source§impl PartialEq for AplAssignment
impl PartialEq for AplAssignment
impl Eq for AplAssignment
impl StructuralPartialEq for AplAssignment
Auto Trait Implementations§
impl Freeze for AplAssignment
impl RefUnwindSafe for AplAssignment
impl Send for AplAssignment
impl Sync for AplAssignment
impl Unpin for AplAssignment
impl UnsafeUnpin for AplAssignment
impl UnwindSafe for AplAssignment
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