pub struct DaxExpressionRef<'a> {
pub owner: ExpressionOwner<'a>,
pub kind: DaxExpressionKind,
pub home_table: Option<&'a str>,
pub text: &'a str,
}Expand description
Borrowed view of one DAX expression owned by a model object.
Fields§
§owner: ExpressionOwner<'a>The object the expression belongs to — the source node of any edge derived
from references found in text.
kind: DaxExpressionKindWhich property of owner this expression is.
home_table: Option<&'a str>Context table for unqualified-column resolution by the lexer.
text: &'a strThe expression text, borrowed from the model.
Trait Implementations§
Source§impl<'a> Clone for DaxExpressionRef<'a>
impl<'a> Clone for DaxExpressionRef<'a>
Source§fn clone(&self) -> DaxExpressionRef<'a>
fn clone(&self) -> DaxExpressionRef<'a>
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 moreimpl<'a> Copy for DaxExpressionRef<'a>
Source§impl<'a> Debug for DaxExpressionRef<'a>
impl<'a> Debug for DaxExpressionRef<'a>
impl<'a> Eq for DaxExpressionRef<'a>
Source§impl<'a> Hash for DaxExpressionRef<'a>
impl<'a> Hash for DaxExpressionRef<'a>
Source§impl<'a> PartialEq for DaxExpressionRef<'a>
impl<'a> PartialEq for DaxExpressionRef<'a>
impl<'a> StructuralPartialEq for DaxExpressionRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for DaxExpressionRef<'a>
impl<'a> RefUnwindSafe for DaxExpressionRef<'a>
impl<'a> Send for DaxExpressionRef<'a>
impl<'a> Sync for DaxExpressionRef<'a>
impl<'a> Unpin for DaxExpressionRef<'a>
impl<'a> UnsafeUnpin for DaxExpressionRef<'a>
impl<'a> UnwindSafe for DaxExpressionRef<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.