pub struct GetByOrgByRepoContent200Response {Show 13 fields
pub type: Type,
pub name: String,
pub path: String,
pub sha: String,
pub size: f64,
pub encoding: Encoding,
pub content: String,
pub executable: bool,
pub last_commit_at: String,
pub child_count: i32,
pub entries: Vec<GetByOrgByRepoContent200ResponseAnyOf2EntriesInner>,
pub next_cursor: String,
pub has_more: bool,
}Fields§
§type: Type§name: String§path: String§sha: String§size: f64§encoding: Encoding§content: String§executable: bool§last_commit_at: String§child_count: i32§entries: Vec<GetByOrgByRepoContent200ResponseAnyOf2EntriesInner>§next_cursor: String§has_more: boolImplementations§
Source§impl GetByOrgByRepoContent200Response
impl GetByOrgByRepoContent200Response
pub fn new( type: Type, name: String, path: String, sha: String, size: f64, encoding: Encoding, content: String, executable: bool, last_commit_at: String, child_count: i32, entries: Vec<GetByOrgByRepoContent200ResponseAnyOf2EntriesInner>, next_cursor: String, has_more: bool, ) -> GetByOrgByRepoContent200Response
Trait Implementations§
Source§impl Clone for GetByOrgByRepoContent200Response
impl Clone for GetByOrgByRepoContent200Response
Source§fn clone(&self) -> GetByOrgByRepoContent200Response
fn clone(&self) -> GetByOrgByRepoContent200Response
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 Default for GetByOrgByRepoContent200Response
impl Default for GetByOrgByRepoContent200Response
Source§fn default() -> GetByOrgByRepoContent200Response
fn default() -> GetByOrgByRepoContent200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetByOrgByRepoContent200Response
impl<'de> Deserialize<'de> for GetByOrgByRepoContent200Response
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetByOrgByRepoContent200Response, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetByOrgByRepoContent200Response, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetByOrgByRepoContent200Response
impl PartialEq for GetByOrgByRepoContent200Response
Source§fn eq(&self, other: &GetByOrgByRepoContent200Response) -> bool
fn eq(&self, other: &GetByOrgByRepoContent200Response) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetByOrgByRepoContent200Response
impl Serialize for GetByOrgByRepoContent200Response
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for GetByOrgByRepoContent200Response
Auto Trait Implementations§
impl Freeze for GetByOrgByRepoContent200Response
impl RefUnwindSafe for GetByOrgByRepoContent200Response
impl Send for GetByOrgByRepoContent200Response
impl Sync for GetByOrgByRepoContent200Response
impl Unpin for GetByOrgByRepoContent200Response
impl UnsafeUnpin for GetByOrgByRepoContent200Response
impl UnwindSafe for GetByOrgByRepoContent200Response
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