pub struct Application {
pub id: ApplicationId,
pub name: Option<String>,
}Fields§
§id: ApplicationIdUnique identifier for the object.
name: Option<String>The name of the application.
Trait Implementations§
Source§impl Clone for Application
impl Clone for Application
Source§fn clone(&self) -> Application
fn clone(&self) -> Application
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 Application
impl Debug for Application
Source§impl Deserialize for Application
impl Deserialize for Application
Source§impl FromValueOpt for Application
impl FromValueOpt for Application
fn from_value(v: Value) -> Option<Self>
Source§impl Object for Application
impl Object for Application
Source§impl ObjectDeser for Application
impl ObjectDeser for Application
type Builder = ApplicationBuilder
Source§impl PartialEq for Application
impl PartialEq for Application
Source§fn eq(&self, other: &Application) -> bool
fn eq(&self, other: &Application) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for Application
impl StructuralPartialEq for Application
Auto Trait Implementations§
impl Freeze for Application
impl RefUnwindSafe for Application
impl Send for Application
impl Sync for Application
impl Unpin for Application
impl UnsafeUnpin for Application
impl UnwindSafe for Application
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