pub struct Tree { /* private fields */ }
Implementations§
Source§impl Tree
impl Tree
pub fn new( store: Arc<Store>, dir: RepoPathBuf, id: TreeId, data: Arc<Tree>, ) -> Self
pub fn empty(store: Arc<Store>, dir: RepoPathBuf) -> Self
pub fn store(&self) -> &Arc<Store>
pub fn dir(&self) -> &RepoPath
pub fn id(&self) -> &TreeId
pub fn data(&self) -> &Tree
pub fn entries_non_recursive(&self) -> TreeEntriesNonRecursiveIterator<'_> ⓘ
pub fn entries_matching<'matcher>( &self, matcher: &'matcher dyn Matcher, ) -> TreeEntriesIterator<'matcher> ⓘ
pub fn value(&self, basename: &RepoPathComponent) -> Option<&TreeValue>
pub fn path_value(&self, path: &RepoPath) -> BackendResult<Option<TreeValue>>
pub fn sub_tree(&self, name: &RepoPathComponent) -> BackendResult<Option<Tree>>
Sourcepub fn sub_tree_recursive(&self, path: &RepoPath) -> BackendResult<Option<Tree>>
pub fn sub_tree_recursive(&self, path: &RepoPath) -> BackendResult<Option<Tree>>
Look up the tree at the given path.
pub fn conflicts_matching( &self, matcher: &dyn Matcher, ) -> Vec<(RepoPathBuf, ConflictId)>
pub fn conflicts(&self) -> Vec<(RepoPathBuf, ConflictId)>
pub fn has_conflict(&self) -> bool
Trait Implementations§
impl Eq for Tree
Auto Trait Implementations§
impl Freeze for Tree
impl !RefUnwindSafe for Tree
impl Send for Tree
impl Sync for Tree
impl Unpin for Tree
impl !UnwindSafe for Tree
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more