pub struct FileOwner<Tree: Ast> {
pub absolute_path: PathBuf,
pub name: PathBuf,
pub tree: Tree,
pub matches: RefCell<MatchRanges>,
pub new: bool,
}
Fields§
§absolute_path: PathBuf
§name: PathBuf
§tree: Tree
§matches: RefCell<MatchRanges>
§new: bool
Trait Implementations§
Auto Trait Implementations§
impl<Tree> !Freeze for FileOwner<Tree>
impl<Tree> !RefUnwindSafe for FileOwner<Tree>
impl<Tree> Send for FileOwner<Tree>where
Tree: Send,
impl<Tree> !Sync for FileOwner<Tree>
impl<Tree> Unpin for FileOwner<Tree>where
Tree: Unpin,
impl<Tree> UnwindSafe for FileOwner<Tree>where
Tree: UnwindSafe,
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<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