pub struct Profile {
pub name: String,
pub variables: Table,
pub dependencies: Vec<String>,
pub prompts: HashMap<String, String>,
pub prompt_backend: Option<PromptBackendType>,
pub bitwarden_note: Option<String>,
pub platform: Option<String>,
}Fields§
§name: String§variables: Table§dependencies: Vec<String>§prompts: HashMap<String, String>§prompt_backend: Option<PromptBackendType>Default backend for this profile’s prompts. Overrides
Config.prompt_backend when this profile is active.
bitwarden_note: Option<String>Overrides Config.bitwarden_note when this profile is active.
platform: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Profile
impl<'de> Deserialize<'de> for Profile
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 Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnsafeUnpin for Profile
impl UnwindSafe for Profile
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