#[non_exhaustive]pub struct DeploymentMetadata {
pub created_at: Option<DateTime<Utc>>,
pub user_id: Option<i64>,
pub user_name: Option<String>,
pub user_uuid: Option<Uuid>,
pub additional_properties: BTreeMap<String, Value>,
/* private fields */
}
Expand description
Metadata object containing the publication creation information.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.created_at: Option<DateTime<Utc>>
Timestamp of when the app was published.
user_id: Option<i64>
The ID of the user who published the app.
user_name: Option<String>
The name (or email address) of the user who published the app.
user_uuid: Option<Uuid>
The UUID of the user who published the app.
additional_properties: BTreeMap<String, Value>
Implementations§
Source§impl DeploymentMetadata
impl DeploymentMetadata
pub fn new() -> DeploymentMetadata
pub fn created_at(self, value: DateTime<Utc>) -> Self
pub fn user_id(self, value: i64) -> Self
pub fn user_name(self, value: String) -> Self
pub fn user_uuid(self, value: Uuid) -> Self
pub fn additional_properties(self, value: BTreeMap<String, Value>) -> Self
Trait Implementations§
Source§impl Clone for DeploymentMetadata
impl Clone for DeploymentMetadata
Source§fn clone(&self) -> DeploymentMetadata
fn clone(&self) -> DeploymentMetadata
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 DeploymentMetadata
impl Debug for DeploymentMetadata
Source§impl Default for DeploymentMetadata
impl Default for DeploymentMetadata
Source§impl<'de> Deserialize<'de> for DeploymentMetadata
impl<'de> Deserialize<'de> for DeploymentMetadata
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 DeploymentMetadata
impl PartialEq for DeploymentMetadata
Source§impl Serialize for DeploymentMetadata
impl Serialize for DeploymentMetadata
impl StructuralPartialEq for DeploymentMetadata
Auto Trait Implementations§
impl Freeze for DeploymentMetadata
impl RefUnwindSafe for DeploymentMetadata
impl Send for DeploymentMetadata
impl Sync for DeploymentMetadata
impl Unpin for DeploymentMetadata
impl UnwindSafe for DeploymentMetadata
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