pub struct JAssignment {
pub name: String,
pub is_global: bool,
pub expression: String,
}Expand description
J assignment.
Fields§
§name: StringName being assigned to.
is_global: boolWhether it’s a global assignment (=:).
expression: StringThe expression being assigned.
Trait Implementations§
Source§impl Clone for JAssignment
impl Clone for JAssignment
Source§fn clone(&self) -> JAssignment
fn clone(&self) -> JAssignment
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 JAssignment
impl Debug for JAssignment
Source§impl PartialEq for JAssignment
impl PartialEq for JAssignment
impl Eq for JAssignment
impl StructuralPartialEq for JAssignment
Auto Trait Implementations§
impl Freeze for JAssignment
impl RefUnwindSafe for JAssignment
impl Send for JAssignment
impl Sync for JAssignment
impl Unpin for JAssignment
impl UnsafeUnpin for JAssignment
impl UnwindSafe for JAssignment
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