pub struct ApplicationLibrary {
pub name: String,
pub applications: Vec<ApplicationEntry>,
}Expand description
Container fuer 1+ Application-Definitionen (§7.3.6.4.1).
Fields§
§name: StringLibrary-Name.
applications: Vec<ApplicationEntry>Application-Definitionen.
Implementations§
Source§impl ApplicationLibrary
impl ApplicationLibrary
Sourcepub fn application(&self, name: &str) -> Option<&ApplicationEntry>
pub fn application(&self, name: &str) -> Option<&ApplicationEntry>
Lookup einer Application anhand ihres Namens.
Trait Implementations§
Source§impl Clone for ApplicationLibrary
impl Clone for ApplicationLibrary
Source§fn clone(&self) -> ApplicationLibrary
fn clone(&self) -> ApplicationLibrary
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 ApplicationLibrary
impl Debug for ApplicationLibrary
Source§impl Default for ApplicationLibrary
impl Default for ApplicationLibrary
Source§fn default() -> ApplicationLibrary
fn default() -> ApplicationLibrary
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApplicationLibrary
impl PartialEq for ApplicationLibrary
Source§fn eq(&self, other: &ApplicationLibrary) -> bool
fn eq(&self, other: &ApplicationLibrary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ApplicationLibrary
impl StructuralPartialEq for ApplicationLibrary
Auto Trait Implementations§
impl Freeze for ApplicationLibrary
impl RefUnwindSafe for ApplicationLibrary
impl Send for ApplicationLibrary
impl Sync for ApplicationLibrary
impl Unpin for ApplicationLibrary
impl UnsafeUnpin for ApplicationLibrary
impl UnwindSafe for ApplicationLibrary
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