pub struct BoundVariable {
pub var_name: String,
pub type_name: String,
pub kind: BindingKind,
}Fields§
§var_name: String§type_name: String§kind: BindingKindTrait Implementations§
Source§impl Clone for BoundVariable
impl Clone for BoundVariable
Source§fn clone(&self) -> BoundVariable
fn clone(&self) -> BoundVariable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BoundVariable
impl RefUnwindSafe for BoundVariable
impl Send for BoundVariable
impl Sync for BoundVariable
impl Unpin for BoundVariable
impl UnsafeUnpin for BoundVariable
impl UnwindSafe for BoundVariable
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