pub struct RepoEntry {
pub name: String,
pub path: String,
pub role: RepoRole,
pub description: String,
}Expand description
A repository entry within the ecosystem.
Fields§
§name: StringRepository name.
path: StringPath (relative or absolute) to the repository root.
role: RepoRoleRole of this repository in the ecosystem.
description: StringHuman-readable description.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RepoEntry
impl<'de> Deserialize<'de> for RepoEntry
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
impl StructuralPartialEq for RepoEntry
Auto Trait Implementations§
impl Freeze for RepoEntry
impl RefUnwindSafe for RepoEntry
impl Send for RepoEntry
impl Sync for RepoEntry
impl Unpin for RepoEntry
impl UnsafeUnpin for RepoEntry
impl UnwindSafe for RepoEntry
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