pub struct LayoutCalculator<Cx> {
pub cx: Cx,
}
Fields§
§cx: Cx
Implementations§
Source§impl<Cx: HasDataLayout> LayoutCalculator<Cx>
impl<Cx: HasDataLayout> LayoutCalculator<Cx>
pub fn new(cx: Cx) -> Self
pub fn scalar_pair<FieldIdx: Idx, VariantIdx: Idx>( &self, a: Scalar, b: Scalar, ) -> LayoutData<FieldIdx, VariantIdx>
pub fn univariant<'a, FieldIdx: Idx, VariantIdx: Idx, F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug + Copy>( &self, fields: &IndexSlice<FieldIdx, F>, repr: &ReprOptions, kind: StructKind, ) -> Result<LayoutData<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>
pub fn layout_of_never_type<FieldIdx: Idx, VariantIdx: Idx>( &self, ) -> LayoutData<FieldIdx, VariantIdx>
pub fn layout_of_struct_or_enum<'a, FieldIdx: Idx, VariantIdx: Idx, F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug + Copy>( &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<LayoutData<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>
pub fn layout_of_union<'a, FieldIdx: Idx, VariantIdx: Idx, F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug + Copy>( &self, repr: &ReprOptions, variants: &IndexSlice<VariantIdx, IndexVec<FieldIdx, F>>, ) -> Result<LayoutData<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>
Sourcefn layout_of_struct<'a, FieldIdx: Idx, VariantIdx: Idx, F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug + Copy>(
&self,
repr: &ReprOptions,
variants: &IndexSlice<VariantIdx, IndexVec<FieldIdx, F>>,
is_enum: bool,
is_unsafe_cell: bool,
scalar_valid_range: (Bound<u128>, Bound<u128>),
always_sized: bool,
present_first: VariantIdx,
) -> Result<LayoutData<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>
fn layout_of_struct<'a, FieldIdx: Idx, VariantIdx: Idx, F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug + Copy>( &self, repr: &ReprOptions, variants: &IndexSlice<VariantIdx, IndexVec<FieldIdx, F>>, is_enum: bool, is_unsafe_cell: bool, scalar_valid_range: (Bound<u128>, Bound<u128>), always_sized: bool, present_first: VariantIdx, ) -> Result<LayoutData<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>
single-variant enums are just structs, if you think about it
fn layout_of_enum<'a, FieldIdx: Idx, VariantIdx: Idx, F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug + Copy>( &self, repr: &ReprOptions, variants: &IndexSlice<VariantIdx, IndexVec<FieldIdx, F>>, discr_range_of_repr: impl Fn(i128, i128) -> (Integer, bool), discriminants: impl Iterator<Item = (VariantIdx, i128)>, dont_niche_optimize_enum: bool, ) -> Result<LayoutData<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>
fn univariant_biased<'a, FieldIdx: Idx, VariantIdx: Idx, F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug + Copy>( &self, fields: &IndexSlice<FieldIdx, F>, repr: &ReprOptions, kind: StructKind, niche_bias: NicheBias, ) -> Result<LayoutData<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>
fn format_field_niches<'a, FieldIdx: Idx, VariantIdx: Idx, F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug>( &self, layout: &LayoutData<FieldIdx, VariantIdx>, fields: &IndexSlice<FieldIdx, F>, ) -> String
Trait Implementations§
Source§impl<Cx: Clone> Clone for LayoutCalculator<Cx>
impl<Cx: Clone> Clone for LayoutCalculator<Cx>
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> Debug for LayoutCalculator<Cx>
impl<Cx: Debug> Debug for LayoutCalculator<Cx>
impl<Cx: Copy> Copy for LayoutCalculator<Cx>
Auto Trait Implementations§
impl<Cx> DynSend for LayoutCalculator<Cx>where
Cx: DynSend,
impl<Cx> DynSync for LayoutCalculator<Cx>where
Cx: DynSync,
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§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> Pointable for T
impl<T> Pointable for T
Source§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.