pub struct RelatedDisposition {
pub kind: &'static str,
pub disposition: Disposition,
}Expand description
One kind a projection is related to, and what happened to that kind.
Fields§
§kind: &'static strThe related kind’s declared name.
disposition: DispositionWhat happened to it.
Trait Implementations§
Source§impl Clone for RelatedDisposition
impl Clone for RelatedDisposition
Source§fn clone(&self) -> RelatedDisposition
fn clone(&self) -> RelatedDisposition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RelatedDisposition
Source§impl Debug for RelatedDisposition
impl Debug for RelatedDisposition
impl Eq for RelatedDisposition
Source§impl Hash for RelatedDisposition
impl Hash for RelatedDisposition
Source§impl PartialEq for RelatedDisposition
impl PartialEq for RelatedDisposition
impl StructuralPartialEq for RelatedDisposition
Auto Trait Implementations§
impl Freeze for RelatedDisposition
impl RefUnwindSafe for RelatedDisposition
impl Send for RelatedDisposition
impl Sync for RelatedDisposition
impl Unpin for RelatedDisposition
impl UnsafeUnpin for RelatedDisposition
impl UnwindSafe for RelatedDisposition
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