pub struct PullResponse {
pub success: bool,
pub error: Option<String>,
pub patches: Vec<PatchProto>,
pub branches: Vec<BranchProto>,
pub blobs: Vec<BlobRef>,
}Fields§
§success: bool§error: Option<String>§patches: Vec<PatchProto>§branches: Vec<BranchProto>§blobs: Vec<BlobRef>Trait Implementations§
Source§impl Debug for PullResponse
impl Debug for PullResponse
Source§impl<'de> Deserialize<'de> for PullResponse
impl<'de> Deserialize<'de> for PullResponse
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
Auto Trait Implementations§
impl Freeze for PullResponse
impl RefUnwindSafe for PullResponse
impl Send for PullResponse
impl Sync for PullResponse
impl Unpin for PullResponse
impl UnsafeUnpin for PullResponse
impl UnwindSafe for PullResponse
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