pub struct AuthCreateWorkloadProfileRequest {
pub allowed_digests: Vec<String>,
pub contract: Option<BTreeMap<String, Value>>,
pub contract_id: String,
pub profile_id: String,
pub review_mode: Option<Value>,
}Expand description
Generated schema type AuthCreateWorkloadProfileRequest.
Fields§
§allowed_digests: Vec<String>§contract: Option<BTreeMap<String, Value>>§contract_id: String§profile_id: String§review_mode: Option<Value>Trait Implementations§
Source§impl Clone for AuthCreateWorkloadProfileRequest
impl Clone for AuthCreateWorkloadProfileRequest
Source§fn clone(&self) -> AuthCreateWorkloadProfileRequest
fn clone(&self) -> AuthCreateWorkloadProfileRequest
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<'de> Deserialize<'de> for AuthCreateWorkloadProfileRequest
impl<'de> Deserialize<'de> for AuthCreateWorkloadProfileRequest
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
Source§impl PartialEq for AuthCreateWorkloadProfileRequest
impl PartialEq for AuthCreateWorkloadProfileRequest
Source§fn eq(&self, other: &AuthCreateWorkloadProfileRequest) -> bool
fn eq(&self, other: &AuthCreateWorkloadProfileRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AuthCreateWorkloadProfileRequest
Auto Trait Implementations§
impl Freeze for AuthCreateWorkloadProfileRequest
impl RefUnwindSafe for AuthCreateWorkloadProfileRequest
impl Send for AuthCreateWorkloadProfileRequest
impl Sync for AuthCreateWorkloadProfileRequest
impl Unpin for AuthCreateWorkloadProfileRequest
impl UnsafeUnpin for AuthCreateWorkloadProfileRequest
impl UnwindSafe for AuthCreateWorkloadProfileRequest
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