pub struct AppServerMethodSpec {
pub method: &'static str,
pub params_type: String,
pub result_type: String,
pub stability: AppServerMethodStability,
pub feature_group: &'static str,
pub idempotency: AppServerIdempotency,
pub side_effect: AppServerSideEffect,
pub notifications: &'static [&'static str],
}Fields§
§method: &'static str§params_type: String§result_type: String§stability: AppServerMethodStability§feature_group: &'static str§idempotency: AppServerIdempotency§side_effect: AppServerSideEffect§notifications: &'static [&'static str]Trait Implementations§
Source§impl Clone for AppServerMethodSpec
impl Clone for AppServerMethodSpec
Source§fn clone(&self) -> AppServerMethodSpec
fn clone(&self) -> AppServerMethodSpec
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 moreSource§impl Debug for AppServerMethodSpec
impl Debug for AppServerMethodSpec
impl Eq for AppServerMethodSpec
Source§impl PartialEq for AppServerMethodSpec
impl PartialEq for AppServerMethodSpec
Source§fn eq(&self, other: &AppServerMethodSpec) -> bool
fn eq(&self, other: &AppServerMethodSpec) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AppServerMethodSpec
impl Serialize for AppServerMethodSpec
impl StructuralPartialEq for AppServerMethodSpec
Auto Trait Implementations§
impl Freeze for AppServerMethodSpec
impl RefUnwindSafe for AppServerMethodSpec
impl Send for AppServerMethodSpec
impl Sync for AppServerMethodSpec
impl Unpin for AppServerMethodSpec
impl UnsafeUnpin for AppServerMethodSpec
impl UnwindSafe for AppServerMethodSpec
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.