pub struct PullRequest11Base {
pub label: Option<String>,
pub ref: String,
pub repo: Box<Repository3>,
pub sha: String,
pub user: Option<Box<User>>,
}
Fields§
§label: Option<String>
§ref: String
§repo: Box<Repository3>
§sha: String
§user: Option<Box<User>>
Implementations§
Source§impl PullRequest11Base
impl PullRequest11Base
pub fn new( label: Option<String>, ref: String, repo: Repository3, sha: String, user: Option<User>, ) -> PullRequest11Base
Trait Implementations§
Source§impl Clone for PullRequest11Base
impl Clone for PullRequest11Base
Source§fn clone(&self) -> PullRequest11Base
fn clone(&self) -> PullRequest11Base
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 PullRequest11Base
impl Debug for PullRequest11Base
Source§impl Default for PullRequest11Base
impl Default for PullRequest11Base
Source§fn default() -> PullRequest11Base
fn default() -> PullRequest11Base
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullRequest11Base
impl<'de> Deserialize<'de> for PullRequest11Base
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 PullRequest11Base
impl PartialEq for PullRequest11Base
Source§impl Serialize for PullRequest11Base
impl Serialize for PullRequest11Base
impl StructuralPartialEq for PullRequest11Base
Auto Trait Implementations§
impl Freeze for PullRequest11Base
impl RefUnwindSafe for PullRequest11Base
impl Send for PullRequest11Base
impl Sync for PullRequest11Base
impl Unpin for PullRequest11Base
impl UnwindSafe for PullRequest11Base
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