pub struct SecretScanningAlertRevokedAlertResolvedBy {Show 20 fields
pub avatar_url: String,
pub email: Option<String>,
pub events_url: String,
pub followers_url: String,
pub following_url: String,
pub gists_url: String,
pub gravatar_id: String,
pub html_url: String,
pub id: i64,
pub login: String,
pub name: Option<String>,
pub node_id: String,
pub organizations_url: String,
pub received_events_url: String,
pub repos_url: String,
pub site_admin: bool,
pub starred_url: String,
pub subscriptions_url: String,
pub type_: SecretScanningAlertRevokedAlertResolvedByType,
pub url: String,
}
Expand description
SecretScanningAlertRevokedAlertResolvedBy
JSON schema
{
"type": "object",
"required": [
"avatar_url",
"events_url",
"followers_url",
"following_url",
"gists_url",
"gravatar_id",
"html_url",
"id",
"login",
"node_id",
"organizations_url",
"received_events_url",
"repos_url",
"site_admin",
"starred_url",
"subscriptions_url",
"type",
"url"
],
"properties": {
"avatar_url": {
"type": "string",
"format": "uri"
},
"email": {
"type": [
"null",
"string"
]
},
"events_url": {
"type": "string",
"format": "uri-template"
},
"followers_url": {
"type": "string",
"format": "uri"
},
"following_url": {
"type": "string",
"format": "uri-template"
},
"gists_url": {
"type": "string",
"format": "uri-template"
},
"gravatar_id": {
"type": "string"
},
"html_url": {
"type": "string",
"format": "uri"
},
"id": {
"type": "integer"
},
"login": {
"type": "string"
},
"name": {
"type": "string"
},
"node_id": {
"type": "string"
},
"organizations_url": {
"type": "string",
"format": "uri"
},
"received_events_url": {
"type": "string",
"format": "uri"
},
"repos_url": {
"type": "string",
"format": "uri"
},
"site_admin": {
"type": "boolean"
},
"starred_url": {
"type": "string",
"format": "uri-template"
},
"subscriptions_url": {
"type": "string",
"format": "uri"
},
"type": {
"type": "string",
"enum": [
"Bot",
"User",
"Organization"
]
},
"url": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
}
Fields§
§avatar_url: String
§email: Option<String>
§events_url: String
§followers_url: String
§following_url: String
§gists_url: String
§gravatar_id: String
§html_url: String
§id: i64
§login: String
§name: Option<String>
§node_id: String
§organizations_url: String
§received_events_url: String
§repos_url: String
§site_admin: bool
§starred_url: String
§subscriptions_url: String
§type_: SecretScanningAlertRevokedAlertResolvedByType
§url: String
Implementations§
Trait Implementations§
Source§impl Clone for SecretScanningAlertRevokedAlertResolvedBy
impl Clone for SecretScanningAlertRevokedAlertResolvedBy
Source§fn clone(&self) -> SecretScanningAlertRevokedAlertResolvedBy
fn clone(&self) -> SecretScanningAlertRevokedAlertResolvedBy
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<'de> Deserialize<'de> for SecretScanningAlertRevokedAlertResolvedBy
impl<'de> Deserialize<'de> for SecretScanningAlertRevokedAlertResolvedBy
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 From<&SecretScanningAlertRevokedAlertResolvedBy> for SecretScanningAlertRevokedAlertResolvedBy
impl From<&SecretScanningAlertRevokedAlertResolvedBy> for SecretScanningAlertRevokedAlertResolvedBy
Source§fn from(value: &SecretScanningAlertRevokedAlertResolvedBy) -> Self
fn from(value: &SecretScanningAlertRevokedAlertResolvedBy) -> Self
Converts to this type from the input type.
Source§impl From<SecretScanningAlertRevokedAlertResolvedBy> for SecretScanningAlertRevokedAlertResolvedBy
impl From<SecretScanningAlertRevokedAlertResolvedBy> for SecretScanningAlertRevokedAlertResolvedBy
Source§fn from(value: SecretScanningAlertRevokedAlertResolvedBy) -> Self
fn from(value: SecretScanningAlertRevokedAlertResolvedBy) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SecretScanningAlertRevokedAlertResolvedBy
impl RefUnwindSafe for SecretScanningAlertRevokedAlertResolvedBy
impl Send for SecretScanningAlertRevokedAlertResolvedBy
impl Sync for SecretScanningAlertRevokedAlertResolvedBy
impl Unpin for SecretScanningAlertRevokedAlertResolvedBy
impl UnwindSafe for SecretScanningAlertRevokedAlertResolvedBy
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