pub(crate) enum ReleasePlan {
None,
Pointer {
pointee: Box<ReleasePlan>,
pointer_ty_key: String,
},
String,
Array(Box<ReleasePlan>),
Aggregate {
payload_bytes: u32,
fields: Vec<(u32, bool, ReleasePlan)>,
},
Enum {
payload_bytes: u32,
variants: Vec<Vec<(u32, bool, ReleasePlan)>>,
},
}Variants§
Trait Implementations§
Source§impl Clone for ReleasePlan
impl Clone for ReleasePlan
Source§fn clone(&self) -> ReleasePlan
fn clone(&self) -> ReleasePlan
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 moreAuto Trait Implementations§
impl Freeze for ReleasePlan
impl RefUnwindSafe for ReleasePlan
impl Send for ReleasePlan
impl Sync for ReleasePlan
impl Unpin for ReleasePlan
impl UnwindSafe for ReleasePlan
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