pub struct GrpcResponse {
pub status: GrpcStatus,
pub payload: Vec<u8>,
pub message: String,
}Expand description
gRPC response.
Fields§
§status: GrpcStatusStatus code.
payload: Vec<u8>Response payload.
message: StringStatus message (optional).
Implementations§
Source§impl GrpcResponse
impl GrpcResponse
Sourcepub fn error(status: GrpcStatus, message: String) -> Self
pub fn error(status: GrpcStatus, message: String) -> Self
Create an error response.
Trait Implementations§
Source§impl Clone for GrpcResponse
impl Clone for GrpcResponse
Source§fn clone(&self) -> GrpcResponse
fn clone(&self) -> GrpcResponse
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GrpcResponse
impl RefUnwindSafe for GrpcResponse
impl Send for GrpcResponse
impl Sync for GrpcResponse
impl Unpin for GrpcResponse
impl UnwindSafe for GrpcResponse
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)