Struct wasmer_api::backend::gql::GetDeployAppLogsVariables
source · pub struct GetDeployAppLogsVariables {
pub name: String,
pub owner: String,
pub version: Option<String>,
pub starting_from: f64,
pub until: Option<f64>,
pub first: Option<i32>,
}
Fields§
§name: String
§owner: String
§version: Option<String>
The tag associated with a particular app version. Uses the active version if not provided.
starting_from: f64
The lower bound for log messages, in nanoseconds since the Unix epoch.
until: Option<f64>
The upper bound for log messages, in nanoseconds since the Unix epoch.
first: Option<i32>
Trait Implementations§
source§impl Debug for GetDeployAppLogsVariables
impl Debug for GetDeployAppLogsVariables
source§impl QueryVariables for GetDeployAppLogsVariables
impl QueryVariables for GetDeployAppLogsVariables
§type Fields = GetDeployAppLogsVariablesFields
type Fields = GetDeployAppLogsVariablesFields
A struct that determines which variables are available when using this struct.
impl VariableMatch<GetDeployAppLogsVariables> for GetDeployAppLogsVariables
Auto Trait Implementations§
impl RefUnwindSafe for GetDeployAppLogsVariables
impl Send for GetDeployAppLogsVariables
impl Sync for GetDeployAppLogsVariables
impl Unpin for GetDeployAppLogsVariables
impl UnwindSafe for GetDeployAppLogsVariables
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