pub struct ListBindings<'a> {
pub account_id: &'a str,
pub script_name: &'a str,
}Expand description
List Bindings Lists all bindings for a given script
Fields§
§account_id: &'a straccount id of owner of the script
script_name: &'a strname of script to list bindings for
Trait Implementations§
Source§impl<'a> Debug for ListBindings<'a>
impl<'a> Debug for ListBindings<'a>
Source§impl EndpointSpec for ListBindings<'_>
impl EndpointSpec for ListBindings<'_>
Source§type JsonResponse = Vec<WorkersBinding>
type JsonResponse = Vec<WorkersBinding>
The JSON response type for this endpoint, if any. Read more
Source§type ResponseType = ApiSuccess<<ListBindings<'_> as EndpointSpec>::JsonResponse>
type ResponseType = ApiSuccess<<ListBindings<'_> 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 ListBindings<'a>
impl<'a> RefUnwindSafe for ListBindings<'a>
impl<'a> Send for ListBindings<'a>
impl<'a> Sync for ListBindings<'a>
impl<'a> Unpin for ListBindings<'a>
impl<'a> UnwindSafe for ListBindings<'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