pub struct NullsFirst { /* private fields */ }Implementations§
Source§impl NullsFirst
impl NullsFirst
pub fn first_token(&self) -> Option<SyntaxToken>
pub fn nulls_token(&self) -> Option<SyntaxToken>
Trait Implementations§
Source§impl AstNode for NullsFirst
impl AstNode for NullsFirst
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
Source§impl Clone for NullsFirst
impl Clone for NullsFirst
Source§fn clone(&self) -> NullsFirst
fn clone(&self) -> NullsFirst
Returns a duplicate 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 NullsFirst
impl Debug for NullsFirst
Source§impl Hash for NullsFirst
impl Hash for NullsFirst
Source§impl PartialEq for NullsFirst
impl PartialEq for NullsFirst
impl Eq for NullsFirst
impl StructuralPartialEq for NullsFirst
Auto Trait Implementations§
impl Freeze for NullsFirst
impl !RefUnwindSafe for NullsFirst
impl !Send for NullsFirst
impl !Sync for NullsFirst
impl Unpin for NullsFirst
impl UnsafeUnpin for NullsFirst
impl !UnwindSafe for NullsFirst
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more