pub struct RateLimitOverviewResources {
pub core: Box<RateLimit>,
pub graphql: Option<Box<RateLimit>>,
pub search: Box<RateLimit>,
pub code_search: Option<Box<RateLimit>>,
pub source_import: Option<Box<RateLimit>>,
pub integration_manifest: Option<Box<RateLimit>>,
pub code_scanning_upload: Option<Box<RateLimit>>,
pub actions_runner_registration: Option<Box<RateLimit>>,
pub scim: Option<Box<RateLimit>>,
pub dependency_snapshots: Option<Box<RateLimit>>,
}
Fields§
§core: Box<RateLimit>
§graphql: Option<Box<RateLimit>>
§search: Box<RateLimit>
§code_search: Option<Box<RateLimit>>
§source_import: Option<Box<RateLimit>>
§integration_manifest: Option<Box<RateLimit>>
§code_scanning_upload: Option<Box<RateLimit>>
§actions_runner_registration: Option<Box<RateLimit>>
§scim: Option<Box<RateLimit>>
§dependency_snapshots: Option<Box<RateLimit>>
Implementations§
Source§impl RateLimitOverviewResources
impl RateLimitOverviewResources
pub fn new(core: RateLimit, search: RateLimit) -> RateLimitOverviewResources
Trait Implementations§
Source§impl Clone for RateLimitOverviewResources
impl Clone for RateLimitOverviewResources
Source§fn clone(&self) -> RateLimitOverviewResources
fn clone(&self) -> RateLimitOverviewResources
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 RateLimitOverviewResources
impl Debug for RateLimitOverviewResources
Source§impl Default for RateLimitOverviewResources
impl Default for RateLimitOverviewResources
Source§fn default() -> RateLimitOverviewResources
fn default() -> RateLimitOverviewResources
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RateLimitOverviewResources
impl<'de> Deserialize<'de> for RateLimitOverviewResources
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 RateLimitOverviewResources
Auto Trait Implementations§
impl Freeze for RateLimitOverviewResources
impl RefUnwindSafe for RateLimitOverviewResources
impl Send for RateLimitOverviewResources
impl Sync for RateLimitOverviewResources
impl Unpin for RateLimitOverviewResources
impl UnwindSafe for RateLimitOverviewResources
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