pub struct ClientApp {
pub id: String,
pub name: String,
pub description: String,
pub requires: Vec<String>,
pub optional: Vec<String>,
}Expand description
Client application configuration
Fields§
§id: String§name: String§description: String§requires: Vec<String>§optional: Vec<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ClientApp
impl<'de> Deserialize<'de> for ClientApp
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
Auto Trait Implementations§
impl Freeze for ClientApp
impl RefUnwindSafe for ClientApp
impl Send for ClientApp
impl Sync for ClientApp
impl Unpin for ClientApp
impl UnsafeUnpin for ClientApp
impl UnwindSafe for ClientApp
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