pub struct RepositoryPath {
pub repo: Repository,
pub path: Arc<str>,
}
Expand description
A struct representing a GitHub repository and a path within it.
Fields§
§repo: Repository
The repository.
path: Arc<str>
The path.
Trait Implementations§
Source§impl Clone for RepositoryPath
impl Clone for RepositoryPath
Source§fn clone(&self) -> RepositoryPath
fn clone(&self) -> RepositoryPath
Returns a copy of the value. Read more
1.0.0 · 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 RepositoryPath
impl Debug for RepositoryPath
Source§impl<'de> Deserialize<'de> for RepositoryPath
impl<'de> Deserialize<'de> for RepositoryPath
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RepositoryPath
impl RefUnwindSafe for RepositoryPath
impl Send for RepositoryPath
impl Sync for RepositoryPath
impl Unpin for RepositoryPath
impl UnwindSafe for RepositoryPath
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