pub struct GitlabProject {
pub id: i64,
pub name: String,
pub path_with_namespace: String,
pub web_url: String,
}Fields§
§id: i64§name: String§path_with_namespace: String§web_url: StringTrait Implementations§
Source§impl Clone for GitlabProject
impl Clone for GitlabProject
Source§fn clone(&self) -> GitlabProject
fn clone(&self) -> GitlabProject
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 GitlabProject
impl Debug for GitlabProject
Source§impl<'de> Deserialize<'de> for GitlabProject
impl<'de> Deserialize<'de> for GitlabProject
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 GitlabProject
impl RefUnwindSafe for GitlabProject
impl Send for GitlabProject
impl Sync for GitlabProject
impl Unpin for GitlabProject
impl UnsafeUnpin for GitlabProject
impl UnwindSafe for GitlabProject
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