pub struct FileSizes {
pub base: Option<i64>,
pub destination: Option<i64>,
pub source: Option<i64>,
}Expand description
Information about the size of files in a merge or pull request.
Fields§
§base: Option<i64>The size of a file in the base of a merge or pull request.
destination: Option<i64>The size of a file in the destination of a merge or pull request.
source: Option<i64>The size of a file in the source of a merge or pull request.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FileSizes
impl<'de> Deserialize<'de> for FileSizes
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 FileSizes
Auto Trait Implementations§
impl Freeze for FileSizes
impl RefUnwindSafe for FileSizes
impl Send for FileSizes
impl Sync for FileSizes
impl Unpin for FileSizes
impl UnwindSafe for FileSizes
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