pub struct DeleteParams {
pub client: Arc<CloudflareClient>,
pub state: Arc<AppState>,
pub record_id: String,
pub record_name: String,
pub record_type: String,
pub view: State<AppView>,
pub is_deleting: State<bool>,
pub status: State<String>,
pub records_display: State<String>,
}Expand description
Parameters for the delete task.
Fields§
§client: Arc<CloudflareClient>§state: Arc<AppState>§record_id: String§record_name: String§record_type: String§view: State<AppView>§is_deleting: State<bool>§status: State<String>§records_display: State<String>Auto Trait Implementations§
impl Freeze for DeleteParams
impl !RefUnwindSafe for DeleteParams
impl Send for DeleteParams
impl Sync for DeleteParams
impl Unpin for DeleteParams
impl UnsafeUnpin for DeleteParams
impl !UnwindSafe for DeleteParams
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