pub enum CompatibleManifest {
Legacy(PluginManifest),
Bundle(BundleManifest),
}Expand description
A manifest parsed through the compatibility boundary.
Variants§
Legacy(PluginManifest)
Bundle(BundleManifest)
Trait Implementations§
Source§impl Clone for CompatibleManifest
impl Clone for CompatibleManifest
Source§fn clone(&self) -> CompatibleManifest
fn clone(&self) -> CompatibleManifest
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 moreAuto Trait Implementations§
impl Freeze for CompatibleManifest
impl RefUnwindSafe for CompatibleManifest
impl Send for CompatibleManifest
impl Sync for CompatibleManifest
impl Unpin for CompatibleManifest
impl UnsafeUnpin for CompatibleManifest
impl UnwindSafe for CompatibleManifest
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