pub struct DeployedBranch {
pub id: Option<String>,
pub deploy_id: Option<String>,
pub name: Option<String>,
pub slug: Option<String>,
pub url: Option<String>,
pub ssl_url: Option<String>,
}
Fields§
§id: Option<String>
§deploy_id: Option<String>
§name: Option<String>
§slug: Option<String>
§url: Option<String>
§ssl_url: Option<String>
Implementations§
Source§impl DeployedBranch
impl DeployedBranch
pub fn new() -> DeployedBranch
Trait Implementations§
Source§impl Clone for DeployedBranch
impl Clone for DeployedBranch
Source§fn clone(&self) -> DeployedBranch
fn clone(&self) -> DeployedBranch
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 DeployedBranch
impl Debug for DeployedBranch
Source§impl<'de> Deserialize<'de> for DeployedBranch
impl<'de> Deserialize<'de> for DeployedBranch
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 DeployedBranch
impl PartialEq for DeployedBranch
Source§impl Serialize for DeployedBranch
impl Serialize for DeployedBranch
impl StructuralPartialEq for DeployedBranch
Auto Trait Implementations§
impl Freeze for DeployedBranch
impl RefUnwindSafe for DeployedBranch
impl Send for DeployedBranch
impl Sync for DeployedBranch
impl Unpin for DeployedBranch
impl UnwindSafe for DeployedBranch
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