struct FluxAttrs {
map: HashMap<&'static str, Vec<FluxAttr>>,
}
Fields§
§map: HashMap<&'static str, Vec<FluxAttr>>
Implementations§
Source§impl FluxAttrs
impl FluxAttrs
fn new(attrs: Vec<FluxAttr>) -> Self
fn dups(&self) -> impl Iterator<Item = (&'static str, &[FluxAttr])>
fn trusted(&mut self) -> Option<Trusted>
fn trusted_impl(&mut self) -> Option<Trusted>
fn ignore(&mut self) -> Option<Ignored>
fn opaque(&self) -> bool
fn reflected(&self) -> bool
fn items(&mut self) -> Vec<Item>
fn fn_sig(&mut self) -> Option<FnSig>
fn qual_names(&mut self) -> Option<QualNames>
fn ty_alias(&mut self) -> Option<TyAlias>
fn refined_by(&mut self) -> Option<RefineParams>
fn generics(&mut self) -> Option<Generics>
fn trait_assoc_refts(&mut self) -> Vec<TraitAssocReft>
fn impl_assoc_refts(&mut self) -> Vec<ImplAssocReft>
fn field(&mut self) -> Option<Ty>
fn constant(&mut self) -> Option<ConstantInfo>
fn variant(&mut self) -> Option<VariantDef>
fn infer_opts(&mut self) -> Option<PartialInferOpts>
fn invariants(&mut self) -> Vec<Expr>
fn extern_spec(&self) -> bool
fn should_fail(&self) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FluxAttrs
impl RefUnwindSafe for FluxAttrs
impl Send for FluxAttrs
impl Sync for FluxAttrs
impl Unpin for FluxAttrs
impl UnwindSafe for FluxAttrs
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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