pub struct RepoGeneration {
pub repo_path: PathBuf,
pub generation: u64,
}Expand description
Generation token for a registered repository.
Fields§
§repo_path: PathBuf§generation: u64Trait Implementations§
Source§impl Clone for RepoGeneration
impl Clone for RepoGeneration
Source§fn clone(&self) -> RepoGeneration
fn clone(&self) -> RepoGeneration
Returns a duplicate 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 RepoGeneration
impl Debug for RepoGeneration
Source§impl<'de> Deserialize<'de> for RepoGeneration
impl<'de> Deserialize<'de> for RepoGeneration
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
Source§impl PartialEq for RepoGeneration
impl PartialEq for RepoGeneration
Source§impl Serialize for RepoGeneration
impl Serialize for RepoGeneration
impl Eq for RepoGeneration
impl StructuralPartialEq for RepoGeneration
Auto Trait Implementations§
impl Freeze for RepoGeneration
impl RefUnwindSafe for RepoGeneration
impl Send for RepoGeneration
impl Sync for RepoGeneration
impl Unpin for RepoGeneration
impl UnwindSafe for RepoGeneration
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