pub struct GenericSelection {
pub expression: Box<Node<Expression>>,
pub associations: Vec<Node<GenericAssociation>>,
}
Expand description
Generic selection expression
(C11 6.5.1.1)
Fields§
§expression: Box<Node<Expression>>
§associations: Vec<Node<GenericAssociation>>
Trait Implementations§
Source§impl Clone for GenericSelection
impl Clone for GenericSelection
Source§fn clone(&self) -> GenericSelection
fn clone(&self) -> GenericSelection
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 GenericSelection
impl Debug for GenericSelection
Source§impl PartialEq for GenericSelection
impl PartialEq for GenericSelection
impl StructuralPartialEq for GenericSelection
Auto Trait Implementations§
impl Freeze for GenericSelection
impl RefUnwindSafe for GenericSelection
impl Send for GenericSelection
impl Sync for GenericSelection
impl Unpin for GenericSelection
impl UnwindSafe for GenericSelection
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