pub struct GetProjectListQuery<Cx, Str = CompactString> {Show 31 fields
pub context: Cx,
pub auth: Option<GitlabAuth<Str>>,
pub pagination: Option<KeysetPagination<ProjectOrder>>,
pub archived: Option<bool>,
pub id_after: Option<ProjectId>,
pub id_before: Option<ProjectId>,
pub imported: Option<bool>,
pub include_hidden: Option<bool>,
pub include_pending_delete: Option<bool>,
pub last_activity_after: Option<DateTime<Utc>>,
pub last_activity_before: Option<DateTime<Utc>>,
pub membership: Option<bool>,
pub min_access_level: Option<AccessLevel>,
pub owned: Option<bool>,
pub repository_checksum_failed: Option<bool>,
pub repository_storage: Option<Str>,
pub search_namespaces: Option<bool>,
pub search: Option<Str>,
pub simple: Option<bool>,
pub starred: Option<bool>,
pub statistics: Option<bool>,
pub topic_ic: Option<TopicId>,
pub topic: Vec<Str>,
pub updated_after: Option<DateTime<Utc>>,
pub updated_before: Option<DateTime<Utc>>,
pub visibility: Option<Visibility>,
pub wiki_checksum_failed: Option<bool>,
pub with_custom_attributes: Option<bool>,
pub with_issues_enabled: Option<bool>,
pub with_merge_requests_enabled: Option<bool>,
pub with_programming_language: Vec<Str>,
}Expand description
List all projects
https://docs.gitlab.com/ee/api/projects.html#list-all-projects
Fields§
§context: Cx§auth: Option<GitlabAuth<Str>>§pagination: Option<KeysetPagination<ProjectOrder>>§archived: Option<bool>§id_after: Option<ProjectId>§id_before: Option<ProjectId>§imported: Option<bool>§include_pending_delete: Option<bool>§last_activity_after: Option<DateTime<Utc>>§last_activity_before: Option<DateTime<Utc>>§membership: Option<bool>§min_access_level: Option<AccessLevel>§owned: Option<bool>§repository_checksum_failed: Option<bool>§repository_storage: Option<Str>§search_namespaces: Option<bool>§search: Option<Str>§simple: Option<bool>§starred: Option<bool>§statistics: Option<bool>§topic_ic: Option<TopicId>§topic: Vec<Str>§updated_after: Option<DateTime<Utc>>§updated_before: Option<DateTime<Utc>>§visibility: Option<Visibility>§wiki_checksum_failed: Option<bool>§with_custom_attributes: Option<bool>§with_issues_enabled: Option<bool>§with_merge_requests_enabled: Option<bool>§with_programming_language: Vec<Str>Implementations§
Source§impl<Cx, Str> GetProjectListQuery<Cx, Str>
impl<Cx, Str> GetProjectListQuery<Cx, Str>
pub fn set_context<NewCx>( self, new_context: NewCx, ) -> GetProjectListQuery<NewCx, Str>
pub fn as_view(&self) -> GetProjectListQueryView<'_, Cx>
Source§impl<Str: AsRef<str>> GetProjectListQuery<EmptyContext, Str>
impl<Str: AsRef<str>> GetProjectListQuery<EmptyContext, Str>
Trait Implementations§
Source§impl<Cx: Clone, Str: Clone> Clone for GetProjectListQuery<Cx, Str>
impl<Cx: Clone, Str: Clone> Clone for GetProjectListQuery<Cx, Str>
Source§fn clone(&self) -> GetProjectListQuery<Cx, Str>
fn clone(&self) -> GetProjectListQuery<Cx, Str>
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<Str: AsRef<str>> Default for GetProjectListQuery<EmptyContext, Str>
impl<Str: AsRef<str>> Default for GetProjectListQuery<EmptyContext, Str>
Source§impl<Cx: Ord, Str: Ord> Ord for GetProjectListQuery<Cx, Str>
impl<Cx: Ord, Str: Ord> Ord for GetProjectListQuery<Cx, Str>
Source§fn cmp(&self, other: &GetProjectListQuery<Cx, Str>) -> Ordering
fn cmp(&self, other: &GetProjectListQuery<Cx, Str>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<Cx: PartialEq, Str: PartialEq> PartialEq for GetProjectListQuery<Cx, Str>
impl<Cx: PartialEq, Str: PartialEq> PartialEq for GetProjectListQuery<Cx, Str>
Source§fn eq(&self, other: &GetProjectListQuery<Cx, Str>) -> bool
fn eq(&self, other: &GetProjectListQuery<Cx, Str>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<Cx: PartialOrd, Str: PartialOrd> PartialOrd for GetProjectListQuery<Cx, Str>
impl<Cx: PartialOrd, Str: PartialOrd> PartialOrd for GetProjectListQuery<Cx, Str>
impl<Cx: Eq, Str: Eq> Eq for GetProjectListQuery<Cx, Str>
impl<Cx, Str> StructuralPartialEq for GetProjectListQuery<Cx, Str>
Auto Trait Implementations§
impl<Cx, Str> Freeze for GetProjectListQuery<Cx, Str>
impl<Cx, Str> RefUnwindSafe for GetProjectListQuery<Cx, Str>where
Cx: RefUnwindSafe,
Str: RefUnwindSafe,
impl<Cx, Str> Send for GetProjectListQuery<Cx, Str>
impl<Cx, Str> Sync for GetProjectListQuery<Cx, Str>
impl<Cx, Str> Unpin for GetProjectListQuery<Cx, Str>
impl<Cx, Str> UnwindSafe for GetProjectListQuery<Cx, Str>where
Cx: UnwindSafe,
Str: UnwindSafe,
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