pub enum LayoutCalculatorError<F> {
UnexpectedUnsized(F),
SizeOverflow,
EmptyUnion,
ReprConflict,
}
Variants§
UnexpectedUnsized(F)
An unsized type was found in a location where a sized type was expected.
This is not always a compile error, for example if there is a [T]: Sized
bound in a where clause.
Contains the field that was unexpectedly unsized.
SizeOverflow
A type was too large for the target platform.
EmptyUnion
A union had no fields.
ReprConflict
The fields or variants have irreconcilable reprs
Implementations§
Source§impl<F> LayoutCalculatorError<F>
impl<F> LayoutCalculatorError<F>
pub fn without_payload(&self) -> LayoutCalculatorError<()>
Sourcepub fn fallback_fmt(&self, f: &mut Formatter<'_>) -> Result
pub fn fallback_fmt(&self, f: &mut Formatter<'_>) -> Result
Format an untranslated diagnostic for this type
Intended for use by rust-analyzer, as neither it nor rustc_abi
depend on fluent infra.
Trait Implementations§
Source§impl<F: Clone> Clone for LayoutCalculatorError<F>
impl<F: Clone> Clone for LayoutCalculatorError<F>
Source§fn clone(&self) -> LayoutCalculatorError<F>
fn clone(&self) -> LayoutCalculatorError<F>
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<F: Debug> Debug for LayoutCalculatorError<F>
impl<F: Debug> Debug for LayoutCalculatorError<F>
Source§impl<F: PartialEq> PartialEq for LayoutCalculatorError<F>
impl<F: PartialEq> PartialEq for LayoutCalculatorError<F>
impl<F: Copy> Copy for LayoutCalculatorError<F>
impl<F: Eq> Eq for LayoutCalculatorError<F>
impl<F> StructuralPartialEq for LayoutCalculatorError<F>
Auto Trait Implementations§
impl<F> Freeze for LayoutCalculatorError<F>where
F: Freeze,
impl<F> RefUnwindSafe for LayoutCalculatorError<F>where
F: RefUnwindSafe,
impl<F> Send for LayoutCalculatorError<F>where
F: Send,
impl<F> Sync for LayoutCalculatorError<F>where
F: Sync,
impl<F> Unpin for LayoutCalculatorError<F>where
F: Unpin,
impl<F> UnwindSafe for LayoutCalculatorError<F>where
F: 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