pub struct FailedRepository {
pub name: String,
pub error: String,
pub url: String,
}Expand description
Repository that failed to clone
Fields§
§name: String§error: String§url: StringTrait Implementations§
Source§impl Clone for FailedRepository
impl Clone for FailedRepository
Source§fn clone(&self) -> FailedRepository
fn clone(&self) -> FailedRepository
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 moreAuto Trait Implementations§
impl Freeze for FailedRepository
impl RefUnwindSafe for FailedRepository
impl Send for FailedRepository
impl Sync for FailedRepository
impl Unpin for FailedRepository
impl UnsafeUnpin for FailedRepository
impl UnwindSafe for FailedRepository
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