Struct observation_tools_client::groups::RunUploader
source · pub struct RunUploader { /* private fields */ }
Expand description
The “root” artifact group for a run.
Implementations§
source§impl RunUploader
impl RunUploader
pub fn run_id(&self) -> RunId
pub fn viewer_url(&self) -> String
pub fn child_uploader_js( &self, metadata: &UserMetadataBuilder ) -> Result<GenericArtifactUploaderTaskHandle, ClientError>
source§impl RunUploader
impl RunUploader
pub fn child_uploader<M: Into<UserMetadataBuilder>>( &self, metadata: M ) -> Result<GenericArtifactUploaderTaskHandle, ClientError>
pub fn child_uploader_2d<M: Into<UserMetadataBuilder>>( &self, metadata: M ) -> Result<ArtifactUploader2dTaskHandle, ClientError>
pub fn child_uploader_3d<M: Into<UserMetadataBuilder>>( &self, metadata: M ) -> Result<ArtifactUploader3dTaskHandle, ClientError>
Trait Implementations§
source§impl Clone for RunUploader
impl Clone for RunUploader
source§fn clone(&self) -> RunUploader
fn clone(&self) -> RunUploader
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RunUploader
impl Debug for RunUploader
source§impl From<RunUploader> for JsValue
impl From<RunUploader> for JsValue
source§fn from(value: RunUploader) -> Self
fn from(value: RunUploader) -> Self
Converts to this type from the input type.
source§impl FromWasmAbi for RunUploader
impl FromWasmAbi for RunUploader
source§impl IntoWasmAbi for RunUploader
impl IntoWasmAbi for RunUploader
source§impl LongRefFromWasmAbi for RunUploader
impl LongRefFromWasmAbi for RunUploader
source§impl OptionFromWasmAbi for RunUploader
impl OptionFromWasmAbi for RunUploader
source§impl OptionIntoWasmAbi for RunUploader
impl OptionIntoWasmAbi for RunUploader
source§impl RefFromWasmAbi for RunUploader
impl RefFromWasmAbi for RunUploader
§type Anchor = Ref<'static, RunUploader>
type Anchor = Ref<'static, RunUploader>
The type that holds the reference to
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.source§impl RefMutFromWasmAbi for RunUploader
impl RefMutFromWasmAbi for RunUploader
source§impl TryFromJsValue for RunUploader
impl TryFromJsValue for RunUploader
source§impl VectorFromWasmAbi for RunUploader
impl VectorFromWasmAbi for RunUploader
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[RunUploader]>
source§impl VectorIntoWasmAbi for RunUploader
impl VectorIntoWasmAbi for RunUploader
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[RunUploader]>) -> Self::Abi
source§impl WasmDescribeVector for RunUploader
impl WasmDescribeVector for RunUploader
Auto Trait Implementations§
impl !RefUnwindSafe for RunUploader
impl Send for RunUploader
impl Sync for RunUploader
impl Unpin for RunUploader
impl !UnwindSafe for RunUploader
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.