pub struct ActionSummary {
pub service: String,
pub resource_path: String,
pub method: String,
pub id: String,
pub http_method: String,
pub description: String,
pub deprecated: bool,
}Expand description
Summary of one available REST method (for whitelisting).
Fields§
§service: String§resource_path: String§method: String§id: String§http_method: String§description: String§deprecated: boolTrait Implementations§
Source§impl Clone for ActionSummary
impl Clone for ActionSummary
Source§fn clone(&self) -> ActionSummary
fn clone(&self) -> ActionSummary
Returns a duplicate of the value. Read more
1.0.0 · 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 ActionSummary
impl Debug for ActionSummary
Source§impl PartialEq for ActionSummary
impl PartialEq for ActionSummary
impl Eq for ActionSummary
impl StructuralPartialEq for ActionSummary
Auto Trait Implementations§
impl Freeze for ActionSummary
impl RefUnwindSafe for ActionSummary
impl Send for ActionSummary
impl Sync for ActionSummary
impl Unpin for ActionSummary
impl UnsafeUnpin for ActionSummary
impl UnwindSafe for ActionSummary
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