pub struct ScopeVariable {
pub variable: String,
pub column: String,
}Expand description
One declared scope variable, mapped to its local column (§3.1, §3.3).
Fields§
§variable: String§column: StringTrait Implementations§
Source§impl Clone for ScopeVariable
impl Clone for ScopeVariable
Source§fn clone(&self) -> ScopeVariable
fn clone(&self) -> ScopeVariable
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 ScopeVariable
impl RefUnwindSafe for ScopeVariable
impl Send for ScopeVariable
impl Sync for ScopeVariable
impl Unpin for ScopeVariable
impl UnsafeUnpin for ScopeVariable
impl UnwindSafe for ScopeVariable
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