pub struct LibraryPackage {
pub is_standard: bool,
pub identification: Identification,
pub body: PackageBody,
}Expand description
Library package: library (optional standard) package Identification PackageBody (BNF LibraryPackage).
Fields§
§is_standard: bool§identification: Identification§body: PackageBodyTrait Implementations§
Source§impl Clone for LibraryPackage
impl Clone for LibraryPackage
Source§fn clone(&self) -> LibraryPackage
fn clone(&self) -> LibraryPackage
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 moreSource§impl Debug for LibraryPackage
impl Debug for LibraryPackage
impl Eq for LibraryPackage
Source§impl PartialEq for LibraryPackage
impl PartialEq for LibraryPackage
Source§fn eq(&self, other: &LibraryPackage) -> bool
fn eq(&self, other: &LibraryPackage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LibraryPackage
Auto Trait Implementations§
impl Freeze for LibraryPackage
impl RefUnwindSafe for LibraryPackage
impl Send for LibraryPackage
impl Sync for LibraryPackage
impl Unpin for LibraryPackage
impl UnsafeUnpin for LibraryPackage
impl UnwindSafe for LibraryPackage
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