pub struct LayoutCalculator<Cx> {
pub cx: Cx,
}
Fields§
§cx: Cx
Implementations§
source§impl<Cx> LayoutCalculator<Cx>where
Cx: HasDataLayout,
impl<Cx> LayoutCalculator<Cx>where
Cx: HasDataLayout,
pub fn new(cx: Cx) -> LayoutCalculator<Cx>
pub fn scalar_pair<FieldIdx, VariantIdx>( &self, a: Scalar, b: Scalar, ) -> LayoutS<FieldIdx, VariantIdx>
pub fn univariant<'a, FieldIdx, VariantIdx, F>( &self, fields: &IndexSlice<FieldIdx, F>, repr: &ReprOptions, kind: StructKind, ) -> Result<LayoutS<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>
pub fn layout_of_never_type<FieldIdx, VariantIdx>( &self, ) -> LayoutS<FieldIdx, VariantIdx>
pub fn layout_of_struct_or_enum<'a, FieldIdx, VariantIdx, F>( &self, repr: &ReprOptions, variants: &IndexSlice<VariantIdx, IndexVec<FieldIdx, F>>, is_enum: bool, is_unsafe_cell: bool, scalar_valid_range: (Bound<u128>, Bound<u128>), discr_range_of_repr: impl Fn(i128, i128) -> (Integer, bool), discriminants: impl Iterator<Item = (VariantIdx, i128)>, dont_niche_optimize_enum: bool, always_sized: bool, ) -> Result<LayoutS<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>
pub fn layout_of_union<'a, FieldIdx, VariantIdx, F>( &self, repr: &ReprOptions, variants: &IndexSlice<VariantIdx, IndexVec<FieldIdx, F>>, ) -> Result<LayoutS<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>
Trait Implementations§
source§impl<Cx> Clone for LayoutCalculator<Cx>where
Cx: Clone,
impl<Cx> Clone for LayoutCalculator<Cx>where
Cx: Clone,
source§fn clone(&self) -> LayoutCalculator<Cx>
fn clone(&self) -> LayoutCalculator<Cx>
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<Cx> Debug for LayoutCalculator<Cx>where
Cx: Debug,
impl<Cx> Debug for LayoutCalculator<Cx>where
Cx: Debug,
impl<Cx> Copy for LayoutCalculator<Cx>where
Cx: Copy,
Auto Trait Implementations§
impl<Cx> Freeze for LayoutCalculator<Cx>where
Cx: Freeze,
impl<Cx> RefUnwindSafe for LayoutCalculator<Cx>where
Cx: RefUnwindSafe,
impl<Cx> Send for LayoutCalculator<Cx>where
Cx: Send,
impl<Cx> Sync for LayoutCalculator<Cx>where
Cx: Sync,
impl<Cx> Unpin for LayoutCalculator<Cx>where
Cx: Unpin,
impl<Cx> UnwindSafe for LayoutCalculator<Cx>where
Cx: UnwindSafe,
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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 moresource§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.