pub enum PageDeploymentId {
Integer(i32),
String(String),
}
Expand description
PageDeploymentId : The ID of the GitHub Pages deployment. This is the Git SHA of the deployed commit. The ID of the GitHub Pages deployment. This is the Git SHA of the deployed commit.
Variants§
Trait Implementations§
Source§impl Clone for PageDeploymentId
impl Clone for PageDeploymentId
Source§fn clone(&self) -> PageDeploymentId
fn clone(&self) -> PageDeploymentId
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 PageDeploymentId
impl Debug for PageDeploymentId
Source§impl Default for PageDeploymentId
impl Default for PageDeploymentId
Source§impl<'de> Deserialize<'de> for PageDeploymentId
impl<'de> Deserialize<'de> for PageDeploymentId
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 PageDeploymentId
impl PartialEq for PageDeploymentId
Source§impl Serialize for PageDeploymentId
impl Serialize for PageDeploymentId
impl StructuralPartialEq for PageDeploymentId
Auto Trait Implementations§
impl Freeze for PageDeploymentId
impl RefUnwindSafe for PageDeploymentId
impl Send for PageDeploymentId
impl Sync for PageDeploymentId
impl Unpin for PageDeploymentId
impl UnwindSafe for PageDeploymentId
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