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