#[non_exhaustive]pub struct TensorboardBlob {
pub id: String,
pub data: Bytes,
/* private fields */
}Available on crate feature
tensorboard-service only.Expand description
One blob (e.g, image, graph) viewable on a blob metric plot.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: StringOutput only. A URI safe key uniquely identifying a blob. Can be used to locate the blob stored in the Cloud Storage bucket of the consumer project.
data: BytesOptional. The bytes of the blob is not present unless it’s returned by the ReadTensorboardBlobData endpoint.
Implementations§
Trait Implementations§
Source§impl Clone for TensorboardBlob
impl Clone for TensorboardBlob
Source§fn clone(&self) -> TensorboardBlob
fn clone(&self) -> TensorboardBlob
Returns a duplicate 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 TensorboardBlob
impl Debug for TensorboardBlob
Source§impl Default for TensorboardBlob
impl Default for TensorboardBlob
Source§fn default() -> TensorboardBlob
fn default() -> TensorboardBlob
Returns the “default value” for a type. Read more
Source§impl Message for TensorboardBlob
impl Message for TensorboardBlob
Source§impl PartialEq for TensorboardBlob
impl PartialEq for TensorboardBlob
impl StructuralPartialEq for TensorboardBlob
Auto Trait Implementations§
impl !Freeze for TensorboardBlob
impl RefUnwindSafe for TensorboardBlob
impl Send for TensorboardBlob
impl Sync for TensorboardBlob
impl Unpin for TensorboardBlob
impl UnwindSafe for TensorboardBlob
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