#[non_exhaustive]pub struct BaseMininal {
pub ref_field: String,
pub sha: String,
pub repo: RepositoryMinimal,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.ref_field: String§sha: String§repo: RepositoryMinimalTrait Implementations§
Source§impl Clone for BaseMininal
impl Clone for BaseMininal
Source§fn clone(&self) -> BaseMininal
fn clone(&self) -> BaseMininal
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 BaseMininal
impl Debug for BaseMininal
Source§impl<'de> Deserialize<'de> for BaseMininal
impl<'de> Deserialize<'de> for BaseMininal
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 BaseMininal
impl PartialEq for BaseMininal
Source§impl Serialize for BaseMininal
impl Serialize for BaseMininal
impl StructuralPartialEq for BaseMininal
Auto Trait Implementations§
impl Freeze for BaseMininal
impl RefUnwindSafe for BaseMininal
impl Send for BaseMininal
impl Sync for BaseMininal
impl Unpin for BaseMininal
impl UnwindSafe for BaseMininal
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