pub struct Enterprise {
pub description: Option<Option<String>>,
pub html_url: String,
pub website_url: Option<Option<String>>,
pub id: i32,
pub node_id: String,
pub name: String,
pub slug: String,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub avatar_url: String,
}
Expand description
Enterprise : An enterprise on GitHub.
Fields§
§description: Option<Option<String>>
A short description of the enterprise.
html_url: String
§website_url: Option<Option<String>>
The enterprise’s website URL.
id: i32
Unique identifier of the enterprise
node_id: String
§name: String
The name of the enterprise.
slug: String
The slug url identifier for the enterprise.
created_at: Option<String>
§updated_at: Option<String>
§avatar_url: String
Implementations§
Trait Implementations§
Source§impl Clone for Enterprise
impl Clone for Enterprise
Source§fn clone(&self) -> Enterprise
fn clone(&self) -> Enterprise
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 Enterprise
impl Debug for Enterprise
Source§impl Default for Enterprise
impl Default for Enterprise
Source§fn default() -> Enterprise
fn default() -> Enterprise
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Enterprise
impl<'de> Deserialize<'de> for Enterprise
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 PartialEq for Enterprise
impl PartialEq for Enterprise
Source§impl Serialize for Enterprise
impl Serialize for Enterprise
impl StructuralPartialEq for Enterprise
Auto Trait Implementations§
impl Freeze for Enterprise
impl RefUnwindSafe for Enterprise
impl Send for Enterprise
impl Sync for Enterprise
impl Unpin for Enterprise
impl UnwindSafe for Enterprise
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