pub struct Application {
pub object_props: ObjectProperties,
/* private fields */
}Expand description
Describes a software application.
Fields§
§object_props: ObjectPropertiesAdds all valid object properties to this struct
Implementations§
Source§impl Application
impl Application
Sourcepub fn full() -> Ext<Ext<Application, ApObjectProperties>, ApActorProperties>
pub fn full() -> Ext<Ext<Application, ApObjectProperties>, ApActorProperties>
Generate a fully extended type
This effect can be achieved with Self::new().extend(SomeExtension::default())
Source§impl Application
impl Application
Trait Implementations§
Source§impl AsMut<ObjectProperties> for Application
impl AsMut<ObjectProperties> for Application
Source§fn as_mut(&mut self) -> &mut ObjectProperties
fn as_mut(&mut self) -> &mut ObjectProperties
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<ObjectProperties> for Application
impl AsRef<ObjectProperties> for Application
Source§fn as_ref(&self) -> &ObjectProperties
fn as_ref(&self) -> &ObjectProperties
Converts this type into a shared reference of the (usually inferred) input type.
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 · 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 Default for Application
impl Default for Application
Source§fn default() -> Application
fn default() -> Application
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Application
impl<'de> Deserialize<'de> for Application
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Application
impl Serialize for Application
Source§impl TryFrom<Application> for ActorBox
impl TryFrom<Application> for ActorBox
Source§impl TryFrom<Application> for BaseBox
impl TryFrom<Application> for BaseBox
Source§impl TryFrom<Application> for ObjectBox
impl TryFrom<Application> for ObjectBox
impl Actor for Application
impl Base for Application
impl Object 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 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