pub struct GithubApp {
pub id: u64,
pub slug: String,
pub node_id: String,
pub owner: Option<SimpleUser>,
pub name: String,
pub description: Option<String>,
pub external_url: String,
pub html_url: String,
pub created_at: String,
pub updated_at: String,
pub permissions: BTreeMap<String, String>,
pub events: Vec<String>,
}
Fields§
§id: u64
§slug: String
§node_id: String
§owner: Option<SimpleUser>
§name: String
§description: Option<String>
§external_url: String
§html_url: String
§created_at: String
§updated_at: String
§permissions: BTreeMap<String, String>
§events: Vec<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GithubApp
impl<'de> Deserialize<'de> for GithubApp
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
Auto Trait Implementations§
impl Freeze for GithubApp
impl RefUnwindSafe for GithubApp
impl Send for GithubApp
impl Sync for GithubApp
impl Unpin for GithubApp
impl UnwindSafe for GithubApp
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