Struct radicle_surf::fs::Submodule

source ·
pub struct Submodule { /* private fields */ }
Expand description

A representation of a Git submodule when encountered in a Git repository.

Implementations§

source§

impl Submodule

source

pub fn new( name: String, prefix: PathBuf, submodule: Option<Submodule<'_>>, id: Oid, ) -> Result<Self, Submodule>

Construct a new Submodule.

The path must be the prefix location of the directory, and so should not end in name.

The id is the commit pointer that Git provides when listing a submodule.

source

pub fn name(&self) -> &String

The name of this Submodule.

Examples found in repository?
examples/browsing.rs (line 58)
51
52
53
54
55
56
57
58
59
60
61
fn print_directory(d: &Directory, repo: &Repository, indent_level: usize) {
    let indent = " ".repeat(indent_level * 4);
    println!("{}{}/", &indent, d.name());
    for entry in d.entries(repo).unwrap() {
        match entry {
            fs::Entry::File(f) => println!("    {}{}", &indent, f.name()),
            fs::Entry::Directory(d) => print_directory(&d, repo, indent_level + 1),
            fs::Entry::Submodule(s) => println!("    {}{}", &indent, s.name()),
        }
    }
}
source

pub fn location(&self) -> &Path

Return the Path where this Submodule is located, relative to the git repository root.

source

pub fn path(&self) -> PathBuf

Return the exact path for this Submodule, including the name of the submodule itself.

The path is relative to the git repository root.

source

pub fn id(&self) -> Oid

The object identifier of this Submodule.

Note that this does not exist in the parent Repository. A new Repository should be opened for the submodule.

source

pub fn url(&self) -> &Option<Url>

The URL for the submodule, if it is defined.

Trait Implementations§

source§

impl Clone for Submodule

source§

fn clone(&self) -> Submodule

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Submodule

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for Submodule

source§

fn eq(&self, other: &Submodule) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Submodule

source§

impl StructuralPartialEq for Submodule

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.