Struct LayoutCalculator
pub struct LayoutCalculator<Cx> {
pub cx: Cx,
}
Fields§
§cx: Cx
Implementations§
§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,
) -> LayoutData<FieldIdx, VariantIdx>where
FieldIdx: Idx,
VariantIdx: Idx,
pub fn univariant<'a, FieldIdx, VariantIdx, F>(
&self,
fields: &IndexSlice<FieldIdx, F>,
repr: &ReprOptions,
kind: StructKind,
) -> Result<LayoutData<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>where
FieldIdx: Idx,
VariantIdx: Idx,
F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug + Copy,
pub fn layout_of_never_type<FieldIdx, VariantIdx>(
&self,
) -> LayoutData<FieldIdx, VariantIdx>where
FieldIdx: Idx,
VariantIdx: Idx,
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<LayoutData<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>where
FieldIdx: Idx,
VariantIdx: Idx,
F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug + Copy,
pub fn layout_of_union<'a, FieldIdx, VariantIdx, F>(
&self,
repr: &ReprOptions,
variants: &IndexSlice<VariantIdx, IndexVec<FieldIdx, F>>,
) -> Result<LayoutData<FieldIdx, VariantIdx>, LayoutCalculatorError<F>>where
FieldIdx: Idx,
VariantIdx: Idx,
F: Deref<Target = &'a LayoutData<FieldIdx, VariantIdx>> + Debug + Copy,
Trait Implementations§
§impl<Cx> Clone for LayoutCalculator<Cx>where
Cx: Clone,
impl<Cx> Clone for LayoutCalculator<Cx>where
Cx: Clone,
§fn clone(&self) -> LayoutCalculator<Cx>
fn clone(&self) -> LayoutCalculator<Cx>
Returns a copy of the value. Read more
Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§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> 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§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> 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.