pub struct SecuritySchemeWithProjects {
pub default_level: Option<i64>,
pub description: Option<String>,
pub id: i64,
pub name: String,
pub project_ids: Option<Vec<i64>>,
pub param_self: String,
}
Expand description
SecuritySchemeWithProjects : Details about an issue security scheme.
Fields§
§default_level: Option<i64>
The default level ID of the issue security scheme.
description: Option<String>
The description of the issue security scheme.
id: i64
The ID of the issue security scheme.
name: String
The name of the issue security scheme.
project_ids: Option<Vec<i64>>
The list of project IDs associated with the issue security scheme.
param_self: String
The URL of the issue security scheme.
Implementations§
Trait Implementations§
Source§impl Clone for SecuritySchemeWithProjects
impl Clone for SecuritySchemeWithProjects
Source§fn clone(&self) -> SecuritySchemeWithProjects
fn clone(&self) -> SecuritySchemeWithProjects
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 SecuritySchemeWithProjects
impl Debug for SecuritySchemeWithProjects
Source§impl Default for SecuritySchemeWithProjects
impl Default for SecuritySchemeWithProjects
Source§fn default() -> SecuritySchemeWithProjects
fn default() -> SecuritySchemeWithProjects
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecuritySchemeWithProjects
impl<'de> Deserialize<'de> for SecuritySchemeWithProjects
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
impl StructuralPartialEq for SecuritySchemeWithProjects
Auto Trait Implementations§
impl Freeze for SecuritySchemeWithProjects
impl RefUnwindSafe for SecuritySchemeWithProjects
impl Send for SecuritySchemeWithProjects
impl Sync for SecuritySchemeWithProjects
impl Unpin for SecuritySchemeWithProjects
impl UnwindSafe for SecuritySchemeWithProjects
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