#[non_exhaustive]pub struct TensorboardBlob {
pub id: String,
pub data: Bytes,
/* private fields */
}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 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 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<'de> Deserialize<'de> for TensorboardBlobwhere
TensorboardBlob: Default,
impl<'de> Deserialize<'de> for TensorboardBlobwhere
TensorboardBlob: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Message for TensorboardBlob
impl Message for TensorboardBlob
Source§impl PartialEq for TensorboardBlob
impl PartialEq for TensorboardBlob
Source§impl Serialize for TensorboardBlob
impl Serialize 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