Struct rets_expression::LastFieldNode
source · #[non_exhaustive]pub struct LastFieldNode {
pub name: String,
/* private fields */
}Expand description
A node representing a reference to a field from the previous value
E.g. LAST MlsStatus
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringThe name of the field that is being referenced
Implementations§
Trait Implementations§
source§impl Clone for LastFieldNode
impl Clone for LastFieldNode
source§fn clone(&self) -> LastFieldNode
fn clone(&self) -> LastFieldNode
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 From<LastFieldNode> for Expression
impl From<LastFieldNode> for Expression
source§fn from(node: LastFieldNode) -> Expression
fn from(node: LastFieldNode) -> Expression
Converts to this type from the input type.
source§impl<T> From<T> for LastFieldNodewhere
T: ToString,
impl<T> From<T> for LastFieldNodewhere T: ToString,
source§impl PartialEq<LastFieldNode> for LastFieldNode
impl PartialEq<LastFieldNode> for LastFieldNode
source§fn eq(&self, other: &LastFieldNode) -> bool
fn eq(&self, other: &LastFieldNode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for LastFieldNode
impl StructuralEq for LastFieldNode
impl StructuralPartialEq for LastFieldNode
Auto Trait Implementations§
impl RefUnwindSafe for LastFieldNode
impl Send for LastFieldNode
impl Sync for LastFieldNode
impl Unpin for LastFieldNode
impl UnwindSafe for LastFieldNode
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