pub struct ServerFunctionClientCompleted {
pub route: String,
pub duration_ms: f64,
pub status_code: u16,
}Expand description
Emitted after a generated #[server] client request succeeds.
Fields§
§route: String§duration_ms: f64§status_code: u16Trait Implementations§
Source§impl Clone for ServerFunctionClientCompleted
impl Clone for ServerFunctionClientCompleted
Source§fn clone(&self) -> ServerFunctionClientCompleted
fn clone(&self) -> ServerFunctionClientCompleted
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§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 ServerFunctionClientCompleted
impl RefUnwindSafe for ServerFunctionClientCompleted
impl Send for ServerFunctionClientCompleted
impl Sync for ServerFunctionClientCompleted
impl Unpin for ServerFunctionClientCompleted
impl UnsafeUnpin for ServerFunctionClientCompleted
impl UnwindSafe for ServerFunctionClientCompleted
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