pub struct WebhookPageBuildBuild {
pub commit: Option<String>,
pub created_at: String,
pub duration: i32,
pub error: Box<PageBuildError>,
pub pusher: Option<Box<User>>,
pub status: String,
pub updated_at: String,
pub url: String,
}
Expand description
WebhookPageBuildBuild : The List GitHub Pages builds itself.
Fields§
§commit: Option<String>
§created_at: String
§duration: i32
§error: Box<PageBuildError>
§pusher: Option<Box<User>>
§status: String
§updated_at: String
§url: String
Implementations§
Source§impl WebhookPageBuildBuild
impl WebhookPageBuildBuild
Sourcepub fn new(
commit: Option<String>,
created_at: String,
duration: i32,
error: PageBuildError,
pusher: Option<User>,
status: String,
updated_at: String,
url: String,
) -> WebhookPageBuildBuild
pub fn new( commit: Option<String>, created_at: String, duration: i32, error: PageBuildError, pusher: Option<User>, status: String, updated_at: String, url: String, ) -> WebhookPageBuildBuild
The List GitHub Pages builds itself.
Trait Implementations§
Source§impl Clone for WebhookPageBuildBuild
impl Clone for WebhookPageBuildBuild
Source§fn clone(&self) -> WebhookPageBuildBuild
fn clone(&self) -> WebhookPageBuildBuild
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 WebhookPageBuildBuild
impl Debug for WebhookPageBuildBuild
Source§impl Default for WebhookPageBuildBuild
impl Default for WebhookPageBuildBuild
Source§fn default() -> WebhookPageBuildBuild
fn default() -> WebhookPageBuildBuild
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookPageBuildBuild
impl<'de> Deserialize<'de> for WebhookPageBuildBuild
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 WebhookPageBuildBuild
impl PartialEq for WebhookPageBuildBuild
Source§impl Serialize for WebhookPageBuildBuild
impl Serialize for WebhookPageBuildBuild
impl StructuralPartialEq for WebhookPageBuildBuild
Auto Trait Implementations§
impl Freeze for WebhookPageBuildBuild
impl RefUnwindSafe for WebhookPageBuildBuild
impl Send for WebhookPageBuildBuild
impl Sync for WebhookPageBuildBuild
impl Unpin for WebhookPageBuildBuild
impl UnwindSafe for WebhookPageBuildBuild
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