pub struct GetAllApisRequest<'a> {
pub workspace: Option<String>,
pub since: Option<String>,
pub until: Option<String>,
pub created_by: Option<String>,
pub updated_by: Option<String>,
pub is_public: Option<bool>,
pub name: Option<String>,
pub summary: Option<String>,
pub description: Option<String>,
pub sort: Option<String>,
pub direction: Option<String>,
/* private fields */
}
Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§workspace: Option<String>
§since: Option<String>
§until: Option<String>
§created_by: Option<String>
§updated_by: Option<String>
§is_public: Option<bool>
§name: Option<String>
§summary: Option<String>
§description: Option<String>
§sort: Option<String>
§direction: Option<String>
Implementations§
Source§impl<'a> GetAllApisRequest<'a>
impl<'a> GetAllApisRequest<'a>
pub async fn send(self) -> Result<Value>
pub fn workspace(self, workspace: &str) -> Self
pub fn since(self, since: &str) -> Self
pub fn until(self, until: &str) -> Self
pub fn created_by(self, created_by: &str) -> Self
pub fn updated_by(self, updated_by: &str) -> Self
pub fn is_public(self, is_public: bool) -> Self
pub fn name(self, name: &str) -> Self
pub fn summary(self, summary: &str) -> Self
pub fn description(self, description: &str) -> Self
pub fn sort(self, sort: &str) -> Self
pub fn direction(self, direction: &str) -> Self
Auto Trait Implementations§
impl<'a> Freeze for GetAllApisRequest<'a>
impl<'a> !RefUnwindSafe for GetAllApisRequest<'a>
impl<'a> Send for GetAllApisRequest<'a>
impl<'a> Sync for GetAllApisRequest<'a>
impl<'a> Unpin for GetAllApisRequest<'a>
impl<'a> !UnwindSafe for GetAllApisRequest<'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