pub struct InitCandidate {
pub name: String,
pub path: String,
pub url: Option<String>,
pub update: Option<String>,
pub currently_active: bool,
}Expand description
One .gitmodules entry selected for submodule init.
Fields§
§name: String§path: String§url: Option<String>§update: Option<String>§currently_active: boolTrait Implementations§
Source§impl Clone for InitCandidate
impl Clone for InitCandidate
Source§fn clone(&self) -> InitCandidate
fn clone(&self) -> InitCandidate
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 InitCandidate
impl Debug for InitCandidate
impl Eq for InitCandidate
Source§impl PartialEq for InitCandidate
impl PartialEq for InitCandidate
impl StructuralPartialEq for InitCandidate
Auto Trait Implementations§
impl Freeze for InitCandidate
impl RefUnwindSafe for InitCandidate
impl Send for InitCandidate
impl Sync for InitCandidate
impl Unpin for InitCandidate
impl UnsafeUnpin for InitCandidate
impl UnwindSafe for InitCandidate
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