Struct fastly_api::models::package_response::PackageResponse
source · pub struct PackageResponse {
pub metadata: Option<Box<PackageMetadata>>,
pub service_id: Option<Box<String>>,
pub version: Option<Box<i32>>,
pub created_at: Option<String>,
pub deleted_at: Option<String>,
pub updated_at: Option<String>,
pub id: Option<String>,
}
Fields§
§metadata: Option<Box<PackageMetadata>>
§service_id: Option<Box<String>>
§version: Option<Box<i32>>
§created_at: Option<String>
Date and time in ISO 8601 format.
deleted_at: Option<String>
Date and time in ISO 8601 format.
updated_at: Option<String>
Date and time in ISO 8601 format.
id: Option<String>
Alphanumeric string identifying the package.
Implementations§
source§impl PackageResponse
impl PackageResponse
pub fn new() -> PackageResponse
Trait Implementations§
source§impl Clone for PackageResponse
impl Clone for PackageResponse
source§fn clone(&self) -> PackageResponse
fn clone(&self) -> PackageResponse
Returns a copy 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 PackageResponse
impl Debug for PackageResponse
source§impl Default for PackageResponse
impl Default for PackageResponse
source§fn default() -> PackageResponse
fn default() -> PackageResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PackageResponse
impl<'de> Deserialize<'de> for PackageResponse
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<PackageResponse> for PackageResponse
impl PartialEq<PackageResponse> for PackageResponse
source§fn eq(&self, other: &PackageResponse) -> bool
fn eq(&self, other: &PackageResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for PackageResponse
impl Serialize for PackageResponse
impl StructuralPartialEq for PackageResponse
Auto Trait Implementations§
impl RefUnwindSafe for PackageResponse
impl Send for PackageResponse
impl Sync for PackageResponse
impl Unpin for PackageResponse
impl UnwindSafe for PackageResponse
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