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