pub struct AuthorStatus {
pub name: String,
pub email: String,
pub total_commits: usize,
pub auths_signed: usize,
pub gpg_signed: usize,
pub ssh_signed: usize,
pub unsigned: usize,
pub primary_method: SigningMethod,
}Expand description
Per-author migration status.
Fields§
§name: String§email: String§total_commits: usize§auths_signed: usize§gpg_signed: usize§ssh_signed: usize§unsigned: usize§primary_method: SigningMethodTrait Implementations§
Source§impl Clone for AuthorStatus
impl Clone for AuthorStatus
Source§fn clone(&self) -> AuthorStatus
fn clone(&self) -> AuthorStatus
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 AuthorStatus
impl Debug for AuthorStatus
Source§impl<'de> Deserialize<'de> for AuthorStatus
impl<'de> Deserialize<'de> for AuthorStatus
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
Auto Trait Implementations§
impl Freeze for AuthorStatus
impl RefUnwindSafe for AuthorStatus
impl Send for AuthorStatus
impl Sync for AuthorStatus
impl Unpin for AuthorStatus
impl UnsafeUnpin for AuthorStatus
impl UnwindSafe for AuthorStatus
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