pub struct GetAllAlertConfigsForProject {
pub app: String,
pub group_id: String,
pub pagination: Pagination,
}
Expand description
https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#operation/returnAllAlertConfigurationsForOneProject
Fields§
§app: String
Application that handles this API resource.
group_id: String
Unique 24-hexadecimal digit string that identifies your project.
pagination: Pagination
Implementations§
Source§impl GetAllAlertConfigsForProject
impl GetAllAlertConfigsForProject
pub fn new(group_id: String, pagination: Pagination) -> Self
Trait Implementations§
Source§impl Debug for GetAllAlertConfigsForProject
impl Debug for GetAllAlertConfigsForProject
Source§impl Endpoint for GetAllAlertConfigsForProject
impl Endpoint for GetAllAlertConfigsForProject
type Data = GetAllAlertConfigsForProjectData
type Error = GetAllAlertConfigsForProjectError
fn method() -> Method
fn path(&self) -> Cow<'static, str>
fn body(&self) -> Result<Option<Vec<u8>>, Self::Error>
fn get_data<'async_trait>(
res: Response,
) -> Pin<Box<dyn Future<Output = Result<Self::Data, Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
Auto Trait Implementations§
impl Freeze for GetAllAlertConfigsForProject
impl RefUnwindSafe for GetAllAlertConfigsForProject
impl Send for GetAllAlertConfigsForProject
impl Sync for GetAllAlertConfigsForProject
impl Unpin for GetAllAlertConfigsForProject
impl UnwindSafe for GetAllAlertConfigsForProject
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