pub struct IrMethod {Show 14 fields
pub id: String,
pub rust_name: String,
pub doc: Option<String>,
pub http_method: String,
pub path_template: String,
pub path_params: Vec<IrField>,
pub query_params: Vec<IrField>,
pub request_type: Option<IrType>,
pub response_type: Option<IrType>,
pub scopes: Vec<String>,
pub supports_pagination: bool,
pub supports_media_upload: bool,
pub supports_media_download: bool,
pub deprecated: bool,
}Fields§
§id: String§rust_name: String§doc: Option<String>§http_method: String§path_template: String§path_params: Vec<IrField>§query_params: Vec<IrField>§request_type: Option<IrType>§response_type: Option<IrType>§scopes: Vec<String>§supports_pagination: bool§supports_media_upload: bool§supports_media_download: bool§deprecated: boolTrait Implementations§
impl Eq for IrMethod
impl StructuralPartialEq for IrMethod
Auto Trait Implementations§
impl Freeze for IrMethod
impl RefUnwindSafe for IrMethod
impl Send for IrMethod
impl Sync for IrMethod
impl Unpin for IrMethod
impl UnsafeUnpin for IrMethod
impl UnwindSafe for IrMethod
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