pub enum ObjectResponse {
Success {
object: Object,
authenticated: Option<bool>,
actions: Actions,
},
Error {
object: Object,
error: ObjectError,
},
}Expand description
https://github.com/git-lfs/git-lfs/blob/master/docs/api/batch.md#successful-responses
Variants§
Implementations§
Trait Implementations§
Source§impl Debug for ObjectResponse
impl Debug for ObjectResponse
Source§impl PartialEq for ObjectResponse
impl PartialEq for ObjectResponse
Source§fn eq(&self, other: &ObjectResponse) -> bool
fn eq(&self, other: &ObjectResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ObjectResponse
impl Serialize for ObjectResponse
impl Eq for ObjectResponse
impl StructuralPartialEq for ObjectResponse
Auto Trait Implementations§
impl Freeze for ObjectResponse
impl RefUnwindSafe for ObjectResponse
impl Send for ObjectResponse
impl Sync for ObjectResponse
impl Unpin for ObjectResponse
impl UnsafeUnpin for ObjectResponse
impl UnwindSafe for ObjectResponse
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