pub struct GithubClaimOut {
pub already: Option<Vec<String>>,
pub claimed: Option<Vec<String>>,
}Fields§
§already: Option<Vec<String>>Already were bound before the call and are unchanged by it.
claimed: Option<Vec<String>>Claimed are the accounts this call bound. Never null; [] when none.
Implementations§
Source§impl GithubClaimOut
impl GithubClaimOut
pub fn new() -> GithubClaimOut
Trait Implementations§
Source§impl Clone for GithubClaimOut
impl Clone for GithubClaimOut
Source§fn clone(&self) -> GithubClaimOut
fn clone(&self) -> GithubClaimOut
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GithubClaimOut
impl Debug for GithubClaimOut
Source§impl Default for GithubClaimOut
impl Default for GithubClaimOut
Source§fn default() -> GithubClaimOut
fn default() -> GithubClaimOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GithubClaimOut
impl<'de> Deserialize<'de> for GithubClaimOut
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 GithubClaimOut
impl PartialEq for GithubClaimOut
Source§impl Serialize for GithubClaimOut
impl Serialize for GithubClaimOut
impl StructuralPartialEq for GithubClaimOut
Auto Trait Implementations§
impl Freeze for GithubClaimOut
impl RefUnwindSafe for GithubClaimOut
impl Send for GithubClaimOut
impl Sync for GithubClaimOut
impl Unpin for GithubClaimOut
impl UnsafeUnpin for GithubClaimOut
impl UnwindSafe for GithubClaimOut
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