pub struct PullLogsRequestBuilder { /* private fields */ }
Implementations§
Source§impl PullLogsRequestBuilder
impl PullLogsRequestBuilder
pub fn send(self) -> ResponseResultBoxFuture<PullLogsResponse>
Sourcepub fn cursor<T: Into<String>>(self, cursor: T) -> Self
pub fn cursor<T: Into<String>>(self, cursor: T) -> Self
Required, the cursor to start pulling logs from, inclusive.
Sourcepub fn end_cursor<T: Into<String>>(self, end_cursor: T) -> Self
pub fn end_cursor<T: Into<String>>(self, end_cursor: T) -> Self
Optional, the cursor to end pulling logs, exclusive.
Sourcepub fn query<T: Into<String>>(self, query: T) -> Self
pub fn query<T: Into<String>>(self, query: T) -> Self
Optional, the query to filter logs, using the spl syntax, e.g, “* | where name = ‘Mike’”.
pub fn query_id<T: Into<String>>(self, query_id: T) -> Self
Auto Trait Implementations§
impl Freeze for PullLogsRequestBuilder
impl !RefUnwindSafe for PullLogsRequestBuilder
impl Send for PullLogsRequestBuilder
impl Sync for PullLogsRequestBuilder
impl Unpin for PullLogsRequestBuilder
impl !UnwindSafe for PullLogsRequestBuilder
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