pub struct Permissions {
pub actions: Option<PermissionLevel>,
pub contents: Option<PermissionLevel>,
pub issues: Option<PermissionLevel>,
pub pull_requests: Option<PermissionLevel>,
pub deployments: Option<PermissionLevel>,
pub checks: Option<PermissionLevel>,
pub statuses: Option<PermissionLevel>,
pub packages: Option<PermissionLevel>,
pub pages: Option<PermissionLevel>,
pub id_token: Option<PermissionLevel>,
}
Fields§
§actions: Option<PermissionLevel>
§contents: Option<PermissionLevel>
§issues: Option<PermissionLevel>
§pull_requests: Option<PermissionLevel>
§deployments: Option<PermissionLevel>
§checks: Option<PermissionLevel>
§statuses: Option<PermissionLevel>
§packages: Option<PermissionLevel>
§pages: Option<PermissionLevel>
§id_token: Option<PermissionLevel>
Implementations§
Source§impl Permissions
impl Permissions
Sourcepub fn actions(self, value: PermissionLevel) -> Self
pub fn actions(self, value: PermissionLevel) -> Self
Sets the actions
field of this struct.
Sourcepub fn contents(self, value: PermissionLevel) -> Self
pub fn contents(self, value: PermissionLevel) -> Self
Sets the contents
field of this struct.
Sourcepub fn issues(self, value: PermissionLevel) -> Self
pub fn issues(self, value: PermissionLevel) -> Self
Sets the issues
field of this struct.
Sourcepub fn pull_requests(self, value: PermissionLevel) -> Self
pub fn pull_requests(self, value: PermissionLevel) -> Self
Sets the pull_requests
field of this struct.
Sourcepub fn deployments(self, value: PermissionLevel) -> Self
pub fn deployments(self, value: PermissionLevel) -> Self
Sets the deployments
field of this struct.
Sourcepub fn checks(self, value: PermissionLevel) -> Self
pub fn checks(self, value: PermissionLevel) -> Self
Sets the checks
field of this struct.
Sourcepub fn statuses(self, value: PermissionLevel) -> Self
pub fn statuses(self, value: PermissionLevel) -> Self
Sets the statuses
field of this struct.
Sourcepub fn packages(self, value: PermissionLevel) -> Self
pub fn packages(self, value: PermissionLevel) -> Self
Sets the packages
field of this struct.
Sourcepub fn pages(self, value: PermissionLevel) -> Self
pub fn pages(self, value: PermissionLevel) -> Self
Sets the pages
field of this struct.
Sourcepub fn id_token(self, value: PermissionLevel) -> Self
pub fn id_token(self, value: PermissionLevel) -> Self
Sets the id_token
field of this struct.
Trait Implementations§
Source§impl Clone for Permissions
impl Clone for Permissions
Source§fn clone(&self) -> Permissions
fn clone(&self) -> Permissions
Returns a copy 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 Permissions
impl Debug for Permissions
Source§impl Default for Permissions
impl Default for Permissions
Source§fn default() -> Permissions
fn default() -> Permissions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Permissions
impl<'de> Deserialize<'de> for Permissions
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
Source§impl PartialEq for Permissions
impl PartialEq for Permissions
Source§impl Serialize for Permissions
impl Serialize for Permissions
impl Eq for Permissions
impl StructuralPartialEq for Permissions
Auto Trait Implementations§
impl Freeze for Permissions
impl RefUnwindSafe for Permissions
impl Send for Permissions
impl Sync for Permissions
impl Unpin for Permissions
impl UnwindSafe for Permissions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.