pub struct RegistryRepository {
pub id: i64,
pub location: String,
pub tags_count: i64,
pub created_at: String,
}
Fields§
§id: i64
§location: String
§created_at: String
Implementations§
Source§impl RegistryRepository
impl RegistryRepository
pub fn builder() -> RegistryRepositoryBuilder
Trait Implementations§
Source§impl Clone for RegistryRepository
impl Clone for RegistryRepository
Source§fn clone(&self) -> RegistryRepository
fn clone(&self) -> RegistryRepository
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 From<GitlabRegistryRepositoryFields> for RegistryRepository
impl From<GitlabRegistryRepositoryFields> for RegistryRepository
Source§fn from(data: GitlabRegistryRepositoryFields) -> Self
fn from(data: GitlabRegistryRepositoryFields) -> Self
Converts to this type from the input type.
Source§impl From<RegistryRepository> for DisplayBody
impl From<RegistryRepository> for DisplayBody
Source§fn from(repo: RegistryRepository) -> DisplayBody
fn from(repo: RegistryRepository) -> DisplayBody
Converts to this type from the input type.
Source§impl Timestamp for RegistryRepository
impl Timestamp for RegistryRepository
fn created_at(&self) -> String
Auto Trait Implementations§
impl Freeze for RegistryRepository
impl RefUnwindSafe for RegistryRepository
impl Send for RegistryRepository
impl Sync for RegistryRepository
impl Unpin for RegistryRepository
impl UnwindSafe for RegistryRepository
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