pub struct AppProperties {
pub application: Option<String>,
pub doc_security: Option<u32>,
pub company: Option<String>,
pub app_version: Option<String>,
pub manager: Option<String>,
pub template: Option<String>,
}Expand description
User-facing application properties.
Fields§
§application: Option<String>§doc_security: Option<u32>§company: Option<String>§app_version: Option<String>§manager: Option<String>§template: Option<String>Implementations§
Source§impl AppProperties
impl AppProperties
Sourcepub fn to_extended_properties(&self) -> ExtendedProperties
pub fn to_extended_properties(&self) -> ExtendedProperties
Convert to the XML-level ExtendedProperties struct.
Trait Implementations§
Source§impl Clone for AppProperties
impl Clone for AppProperties
Source§fn clone(&self) -> AppProperties
fn clone(&self) -> AppProperties
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 AppProperties
impl Debug for AppProperties
Source§impl Default for AppProperties
impl Default for AppProperties
Source§fn default() -> AppProperties
fn default() -> AppProperties
Returns the “default value” for a type. Read more
Source§impl From<&ExtendedProperties> for AppProperties
impl From<&ExtendedProperties> for AppProperties
Source§fn from(props: &ExtendedProperties) -> Self
fn from(props: &ExtendedProperties) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppProperties
impl RefUnwindSafe for AppProperties
impl Send for AppProperties
impl Sync for AppProperties
impl Unpin for AppProperties
impl UnwindSafe for AppProperties
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