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