pub struct ProfileDetail {
pub profile_id: String,
pub name: Option<String>,
pub description: Option<String>,
pub enabled: Option<bool>,
pub policy_sets: Vec<PolicySet>,
}Expand description
Detailed profile definition including inputs, outputs, and policy sets.
Fields§
§profile_id: StringProfile identifier.
name: Option<String>Human-readable name.
description: Option<String>Profile description.
enabled: Option<bool>Whether the profile is enabled.
policy_sets: Vec<PolicySet>Policy set constraints defining the certificate structure.
Trait Implementations§
Source§impl Clone for ProfileDetail
impl Clone for ProfileDetail
Source§fn clone(&self) -> ProfileDetail
fn clone(&self) -> ProfileDetail
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 ProfileDetail
impl Debug for ProfileDetail
Source§impl<'de> Deserialize<'de> for ProfileDetail
impl<'de> Deserialize<'de> for ProfileDetail
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 ProfileDetail
impl RefUnwindSafe for ProfileDetail
impl Send for ProfileDetail
impl Sync for ProfileDetail
impl Unpin for ProfileDetail
impl UnsafeUnpin for ProfileDetail
impl UnwindSafe for ProfileDetail
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