Struct flux_middle::fhir::RefineParam
source · pub struct RefineParam<'fhir> {
pub id: ParamId,
pub name: Symbol,
pub span: Span,
pub sort: Sort<'fhir>,
pub kind: ParamKind,
pub fhir_id: FhirId,
}
Fields§
§id: ParamId
§name: Symbol
§span: Span
§sort: Sort<'fhir>
§kind: ParamKind
§fhir_id: FhirId
Trait Implementations§
source§impl<'fhir> Clone for RefineParam<'fhir>
impl<'fhir> Clone for RefineParam<'fhir>
source§fn clone(&self) -> RefineParam<'fhir>
fn clone(&self) -> RefineParam<'fhir>
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<'fhir> Debug for RefineParam<'fhir>
impl<'fhir> Debug for RefineParam<'fhir>
impl<'fhir> Copy for RefineParam<'fhir>
Auto Trait Implementations§
impl<'fhir> Freeze for RefineParam<'fhir>
impl<'fhir> RefUnwindSafe for RefineParam<'fhir>
impl<'fhir> Send for RefineParam<'fhir>
impl<'fhir> Sync for RefineParam<'fhir>
impl<'fhir> Unpin for RefineParam<'fhir>
impl<'fhir> UnwindSafe for RefineParam<'fhir>
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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