pub struct ImportProposalReport {
pub imported: usize,
pub applied: usize,
pub rejected: usize,
pub duplicates: usize,
pub wrote_to: String,
}Fields§
§imported: usize§applied: usize§rejected: usize§duplicates: usize§wrote_to: StringTrait Implementations§
Source§impl Clone for ImportProposalReport
impl Clone for ImportProposalReport
Source§fn clone(&self) -> ImportProposalReport
fn clone(&self) -> ImportProposalReport
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 ImportProposalReport
impl Debug for ImportProposalReport
Source§impl Default for ImportProposalReport
impl Default for ImportProposalReport
Source§fn default() -> ImportProposalReport
fn default() -> ImportProposalReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ImportProposalReport
impl RefUnwindSafe for ImportProposalReport
impl Send for ImportProposalReport
impl Sync for ImportProposalReport
impl Unpin for ImportProposalReport
impl UnsafeUnpin for ImportProposalReport
impl UnwindSafe for ImportProposalReport
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