pub struct SimpleClassroomRepository {
pub id: i32,
pub full_name: String,
pub html_url: String,
pub node_id: String,
pub private: bool,
pub default_branch: String,
}
Expand description
SimpleClassroomRepository : A GitHub repository view for Classroom
Fields§
§id: i32
A unique identifier of the repository.
full_name: String
The full, globally unique name of the repository.
html_url: String
The URL to view the repository on GitHub.com.
node_id: String
The GraphQL identifier of the repository.
private: bool
Whether the repository is private.
default_branch: String
The default branch for the repository.
Implementations§
Trait Implementations§
Source§impl Clone for SimpleClassroomRepository
impl Clone for SimpleClassroomRepository
Source§fn clone(&self) -> SimpleClassroomRepository
fn clone(&self) -> SimpleClassroomRepository
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 SimpleClassroomRepository
impl Debug for SimpleClassroomRepository
Source§impl Default for SimpleClassroomRepository
impl Default for SimpleClassroomRepository
Source§fn default() -> SimpleClassroomRepository
fn default() -> SimpleClassroomRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SimpleClassroomRepository
impl<'de> Deserialize<'de> for SimpleClassroomRepository
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
impl StructuralPartialEq for SimpleClassroomRepository
Auto Trait Implementations§
impl Freeze for SimpleClassroomRepository
impl RefUnwindSafe for SimpleClassroomRepository
impl Send for SimpleClassroomRepository
impl Sync for SimpleClassroomRepository
impl Unpin for SimpleClassroomRepository
impl UnwindSafe for SimpleClassroomRepository
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