pub struct PatchedBulkConfigContextProfileRequest {
pub id: i32,
pub name: Option<String>,
pub description: Option<String>,
pub schema: Option<Option<Value>>,
pub tags: Option<Vec<NestedTagRequest>>,
pub owner: Option<Option<Box<AsnRangeRequestOwner>>>,
pub comments: Option<String>,
pub data_source: Option<Box<BulkConfigContextProfileRequestDataSource>>,
}Expand description
PatchedBulkConfigContextProfileRequest : Base serializer class for models inheriting from PrimaryModel.
Fields§
§id: i32§name: Option<String>§description: Option<String>§schema: Option<Option<Value>>A JSON schema specifying the structure of the context data for this profile
owner: Option<Option<Box<AsnRangeRequestOwner>>>§comments: Option<String>§data_source: Option<Box<BulkConfigContextProfileRequestDataSource>>Implementations§
Source§impl PatchedBulkConfigContextProfileRequest
impl PatchedBulkConfigContextProfileRequest
Sourcepub fn new(id: i32) -> PatchedBulkConfigContextProfileRequest
pub fn new(id: i32) -> PatchedBulkConfigContextProfileRequest
Base serializer class for models inheriting from PrimaryModel.
Trait Implementations§
Source§impl Clone for PatchedBulkConfigContextProfileRequest
impl Clone for PatchedBulkConfigContextProfileRequest
Source§fn clone(&self) -> PatchedBulkConfigContextProfileRequest
fn clone(&self) -> PatchedBulkConfigContextProfileRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for PatchedBulkConfigContextProfileRequest
impl Default for PatchedBulkConfigContextProfileRequest
Source§fn default() -> PatchedBulkConfigContextProfileRequest
fn default() -> PatchedBulkConfigContextProfileRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedBulkConfigContextProfileRequest
impl<'de> Deserialize<'de> for PatchedBulkConfigContextProfileRequest
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
impl StructuralPartialEq for PatchedBulkConfigContextProfileRequest
Auto Trait Implementations§
impl Freeze for PatchedBulkConfigContextProfileRequest
impl RefUnwindSafe for PatchedBulkConfigContextProfileRequest
impl Send for PatchedBulkConfigContextProfileRequest
impl Sync for PatchedBulkConfigContextProfileRequest
impl Unpin for PatchedBulkConfigContextProfileRequest
impl UnsafeUnpin for PatchedBulkConfigContextProfileRequest
impl UnwindSafe for PatchedBulkConfigContextProfileRequest
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