pub struct BulkConfigContextProfileRequest {
pub id: i32,
pub name: 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
BulkConfigContextProfileRequest : Base serializer class for models inheriting from PrimaryModel.
Fields§
§id: i32§name: 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 BulkConfigContextProfileRequest
impl BulkConfigContextProfileRequest
Sourcepub fn new(id: i32, name: String) -> BulkConfigContextProfileRequest
pub fn new(id: i32, name: String) -> BulkConfigContextProfileRequest
Base serializer class for models inheriting from PrimaryModel.
Trait Implementations§
Source§impl Clone for BulkConfigContextProfileRequest
impl Clone for BulkConfigContextProfileRequest
Source§fn clone(&self) -> BulkConfigContextProfileRequest
fn clone(&self) -> BulkConfigContextProfileRequest
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 BulkConfigContextProfileRequest
impl Default for BulkConfigContextProfileRequest
Source§fn default() -> BulkConfigContextProfileRequest
fn default() -> BulkConfigContextProfileRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BulkConfigContextProfileRequest
impl<'de> Deserialize<'de> for BulkConfigContextProfileRequest
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 BulkConfigContextProfileRequest
Auto Trait Implementations§
impl Freeze for BulkConfigContextProfileRequest
impl RefUnwindSafe for BulkConfigContextProfileRequest
impl Send for BulkConfigContextProfileRequest
impl Sync for BulkConfigContextProfileRequest
impl Unpin for BulkConfigContextProfileRequest
impl UnsafeUnpin for BulkConfigContextProfileRequest
impl UnwindSafe for BulkConfigContextProfileRequest
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