pub struct NakedDeployment {
pub id: Id,
pub created_at: DateTime,
pub updated_at: DateTime,
pub app_version: Option<DeployAppVersion>,
}
Fields§
§id: Id
§created_at: DateTime
§updated_at: DateTime
§app_version: Option<DeployAppVersion>
Trait Implementations§
Source§impl Clone for NakedDeployment
impl Clone for NakedDeployment
Source§fn clone(&self) -> NakedDeployment
fn clone(&self) -> NakedDeployment
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 NakedDeployment
impl Debug for NakedDeployment
Source§impl<'de> Deserialize<'de> for NakedDeployment
impl<'de> Deserialize<'de> for NakedDeployment
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 QueryFragment for NakedDeployment
impl QueryFragment for NakedDeployment
Source§type SchemaType = NakedDeployment
type SchemaType = NakedDeployment
The type in a schema that this
QueryFragment
representsSource§type VariablesFields = ()
type VariablesFields = ()
The variables that are required to execute this
QueryFragment
Source§fn query(builder: SelectionBuilder<'_, Self::SchemaType, Self::VariablesFields>)
fn query(builder: SelectionBuilder<'_, Self::SchemaType, Self::VariablesFields>)
Adds this fragment to the query being built by
builder
Auto Trait Implementations§
impl Freeze for NakedDeployment
impl RefUnwindSafe for NakedDeployment
impl Send for NakedDeployment
impl Sync for NakedDeployment
impl Unpin for NakedDeployment
impl UnwindSafe for NakedDeployment
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