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