pub struct ProjectsSiteDeploy {
pub deployment_id: Option<String>,
pub files: Option<Vec<String>>,
pub name: Option<String>,
pub slug: Option<String>,
pub status: Option<String>,
pub url: Option<String>,
}Fields§
§deployment_id: Option<String>DeploymentID is the deployment this publish recorded, for the history.
files: Option<Vec<String>>Files are the site-relative paths that were uploaded, sorted.
name: Option<String>Name is the project’s display name.
slug: Option<String>Slug is the project the site was published into, created on the fly when the slug was free.
status: Option<String>Status is the deployment status, "live" on success.
url: Option<String>URL is the canonical live URL, https://
Implementations§
Source§impl ProjectsSiteDeploy
impl ProjectsSiteDeploy
pub fn new() -> ProjectsSiteDeploy
Trait Implementations§
Source§impl Clone for ProjectsSiteDeploy
impl Clone for ProjectsSiteDeploy
Source§fn clone(&self) -> ProjectsSiteDeploy
fn clone(&self) -> ProjectsSiteDeploy
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 Debug for ProjectsSiteDeploy
impl Debug for ProjectsSiteDeploy
Source§impl Default for ProjectsSiteDeploy
impl Default for ProjectsSiteDeploy
Source§fn default() -> ProjectsSiteDeploy
fn default() -> ProjectsSiteDeploy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectsSiteDeploy
impl<'de> Deserialize<'de> for ProjectsSiteDeploy
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 ProjectsSiteDeploy
impl PartialEq for ProjectsSiteDeploy
Source§impl Serialize for ProjectsSiteDeploy
impl Serialize for ProjectsSiteDeploy
impl StructuralPartialEq for ProjectsSiteDeploy
Auto Trait Implementations§
impl Freeze for ProjectsSiteDeploy
impl RefUnwindSafe for ProjectsSiteDeploy
impl Send for ProjectsSiteDeploy
impl Sync for ProjectsSiteDeploy
impl Unpin for ProjectsSiteDeploy
impl UnsafeUnpin for ProjectsSiteDeploy
impl UnwindSafe for ProjectsSiteDeploy
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