pub struct PoolDetails<'a> {
pub account_identifier: &'a str,
pub identifier: &'a str,
}Expand description
Fields§
§account_identifier: &'a strThe Cloudflare account of this pool.
identifier: &'a strWhich pool to retrieve the details of.
Trait Implementations§
Source§impl<'a> Debug for PoolDetails<'a>
impl<'a> Debug for PoolDetails<'a>
Source§impl EndpointSpec for PoolDetails<'_>
impl EndpointSpec for PoolDetails<'_>
Source§type JsonResponse = Pool
type JsonResponse = Pool
The JSON response type for this endpoint, if any. Read more
Source§type ResponseType = ApiSuccess<<PoolDetails<'_> as EndpointSpec>::JsonResponse>
type ResponseType = ApiSuccess<<PoolDetails<'_> as EndpointSpec>::JsonResponse>
The final response type for this endpoint. Read more
Source§const IS_RAW_BODY: bool = false
const IS_RAW_BODY: bool = false
If the body of the response is raw bytes (Vec), set this to
true. Defaults to false.Source§fn query(&self) -> Option<String>
fn query(&self) -> Option<String>
The url-encoded query string associated with this endpoint. Defaults to
None. Read moreSource§fn body(&self) -> Option<RequestBody<'_>>
fn body(&self) -> Option<RequestBody<'_>>
The HTTP body associated with this endpoint. If not implemented, defaults to
None. Read moreAuto Trait Implementations§
impl<'a> Freeze for PoolDetails<'a>
impl<'a> RefUnwindSafe for PoolDetails<'a>
impl<'a> Send for PoolDetails<'a>
impl<'a> Sync for PoolDetails<'a>
impl<'a> Unpin for PoolDetails<'a>
impl<'a> UnwindSafe for PoolDetails<'a>
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