pub struct FieldExpression {
pub prefix: Prefix,
pub field: String,
}
Fields§
§prefix: Prefix
§field: String
Trait Implementations§
Source§impl Clone for FieldExpression
impl Clone for FieldExpression
Source§fn clone(&self) -> FieldExpression
fn clone(&self) -> FieldExpression
Returns a copy 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 FieldExpression
impl Debug for FieldExpression
Source§impl Into<Expression> for FieldExpression
impl Into<Expression> for FieldExpression
Source§fn into(self) -> Expression
fn into(self) -> Expression
Converts this type into the (usually inferred) input type.
Source§impl PartialEq for FieldExpression
impl PartialEq for FieldExpression
Source§impl Prefix<Expression, FunctionCall, FieldExpression, IndexExpression> for Prefix
impl Prefix<Expression, FunctionCall, FieldExpression, IndexExpression> for Prefix
fn from_name(name: String) -> Self
fn from_parenthese(expression: Expression) -> Self
fn from_call(call: FunctionCall) -> Self
fn from_field(field: FieldExpression) -> Self
fn from_index(index: IndexExpression) -> Self
impl Eq for FieldExpression
impl StructuralPartialEq for FieldExpression
Auto Trait Implementations§
impl Freeze for FieldExpression
impl RefUnwindSafe for FieldExpression
impl Send for FieldExpression
impl Sync for FieldExpression
impl Unpin for FieldExpression
impl UnwindSafe for FieldExpression
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