pub struct CreateKeyRequest {
pub description: String,
pub role: Role,
pub project: String,
pub pattern: Option<String>,
pub expires_at: Option<DateTime<Utc>>,
}Expand description
Request for creating a new API key.
Fields§
§description: StringHuman-readable description
role: RoleRole to assign (viewer, contributor, promoter, admin)
project: StringProject this key is scoped to (use “*” for all projects)
pattern: Option<String>Optional glob pattern to restrict benchmark access
expires_at: Option<DateTime<Utc>>Optional expiration timestamp
Trait Implementations§
Source§impl Clone for CreateKeyRequest
impl Clone for CreateKeyRequest
Source§fn clone(&self) -> CreateKeyRequest
fn clone(&self) -> CreateKeyRequest
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 CreateKeyRequest
impl Debug for CreateKeyRequest
Source§impl<'de> Deserialize<'de> for CreateKeyRequest
impl<'de> Deserialize<'de> for CreateKeyRequest
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 JsonSchema for CreateKeyRequest
impl JsonSchema for CreateKeyRequest
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for CreateKeyRequest
impl RefUnwindSafe for CreateKeyRequest
impl Send for CreateKeyRequest
impl Sync for CreateKeyRequest
impl Unpin for CreateKeyRequest
impl UnsafeUnpin for CreateKeyRequest
impl UnwindSafe for CreateKeyRequest
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