pub struct ProductTypeLayout {
pub layout: Layout,
pub elements: Box<[ProductTypeElementLayout]>,
}Expand description
A mirror of ProductType annotated with a Layout.
Fields§
§layout: LayoutThe memoized layout of the product type.
elements: Box<[ProductTypeElementLayout]>The fields of the product type with their own layout annotations.
Implementations§
Source§impl ProductTypeLayout
impl ProductTypeLayout
Sourcepub fn view(&self) -> ProductTypeLayoutView<'_>
pub fn view(&self) -> ProductTypeLayoutView<'_>
Returns a view of this row type as a product type.
Trait Implementations§
Source§impl Clone for ProductTypeLayout
impl Clone for ProductTypeLayout
Source§fn clone(&self) -> ProductTypeLayout
fn clone(&self) -> ProductTypeLayout
Returns a duplicate 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 Debug for ProductTypeLayout
impl Debug for ProductTypeLayout
Source§impl From<ProductType> for ProductTypeLayout
impl From<ProductType> for ProductTypeLayout
Source§fn from(ty: ProductType) -> Self
fn from(ty: ProductType) -> Self
Converts to this type from the input type.
Source§impl HasLayout for ProductTypeLayout
impl HasLayout for ProductTypeLayout
Source§impl MemoryUsage for ProductTypeLayout
impl MemoryUsage for ProductTypeLayout
Source§fn heap_usage(&self) -> usize
fn heap_usage(&self) -> usize
The heap memory usage of this type. The default implementation returns 0.
Source§impl PartialEq for ProductTypeLayout
impl PartialEq for ProductTypeLayout
impl Eq for ProductTypeLayout
impl StructuralPartialEq for ProductTypeLayout
Auto Trait Implementations§
impl Freeze for ProductTypeLayout
impl RefUnwindSafe for ProductTypeLayout
impl Send for ProductTypeLayout
impl Sync for ProductTypeLayout
impl Unpin for ProductTypeLayout
impl UnwindSafe for ProductTypeLayout
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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