pub struct Profile {
pub aad: Option<String>,
pub key_b64: Option<String>,
pub url: Option<String>,
pub url_rev: Option<String>,
pub url_b64: Option<String>,
pub output: Option<String>,
}Expand description
Configuration for a single profile
Fields§
§aad: Option<String>Authenticated Additional Data (AAD) for AEAD
key_b64: Option<String>Base64-encoded 32-byte key
url: Option<String>Direct URL
url_rev: Option<String>Reversed URL (runtime reconstructed)
url_b64: Option<String>Base64-encoded URL
output: Option<String>Optional output path for plaintext
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 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