Struct devise::syn::PredicateLifetime [−][src]
pub struct PredicateLifetime {
pub lifetime: Lifetime,
pub colon_token: Colon,
pub bounds: Punctuated<Lifetime, Add>,
}
Expand description
A lifetime predicate in a where
clause: 'a: 'b + 'c
.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Fields
lifetime: Lifetime
colon_token: Colon
bounds: Punctuated<Lifetime, Add>
Trait Implementations
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl !RefUnwindSafe for PredicateLifetime
impl !Send for PredicateLifetime
impl !Sync for PredicateLifetime
impl Unpin for PredicateLifetime
impl UnwindSafe for PredicateLifetime
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns a Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty. Read more