pub struct Manifest {
pub manifest_version: u32,
pub package: Package,
pub build: String,
pub start: String,
pub capabilities: Vec<CapabilityRef>,
pub depends: Vec<DependsRef>,
pub is_legacy: bool,
}Fields§
§manifest_version: u32§package: Package§build: String§start: String§capabilities: Vec<CapabilityRef>§depends: Vec<DependsRef>§is_legacy: boolTrue iff the manifest was parsed from legacy fields (id/nodes/build.script).
rbnx prints a deprecation warning in this case.
Implementations§
Source§impl Manifest
impl Manifest
pub fn validate_and_summarize(&self) -> Result<PackageSummary>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Manifest
impl RefUnwindSafe for Manifest
impl Send for Manifest
impl Sync for Manifest
impl Unpin for Manifest
impl UnsafeUnpin for Manifest
impl UnwindSafe for Manifest
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