#[non_exhaustive]pub struct TensorboardBlobSequence {
pub values: Vec<TensorboardBlob>,
/* private fields */
}Expand description
One point viewable on a blob metric plot, but mostly just a wrapper message
to work around repeated fields can’t be used directly within oneof fields.
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.values: Vec<TensorboardBlob>List of blobs contained within the sequence.
Implementations§
Source§impl TensorboardBlobSequence
impl TensorboardBlobSequence
pub fn new() -> Self
Sourcepub fn set_values<T, V>(self, v: T) -> Self
pub fn set_values<T, V>(self, v: T) -> Self
Sets the value of values.
Trait Implementations§
Source§impl Clone for TensorboardBlobSequence
impl Clone for TensorboardBlobSequence
Source§fn clone(&self) -> TensorboardBlobSequence
fn clone(&self) -> TensorboardBlobSequence
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 TensorboardBlobSequence
impl Debug for TensorboardBlobSequence
Source§impl Default for TensorboardBlobSequence
impl Default for TensorboardBlobSequence
Source§fn default() -> TensorboardBlobSequence
fn default() -> TensorboardBlobSequence
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TensorboardBlobSequencewhere
TensorboardBlobSequence: Default,
impl<'de> Deserialize<'de> for TensorboardBlobSequencewhere
TensorboardBlobSequence: 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 TensorboardBlobSequence
impl Message for TensorboardBlobSequence
Source§impl PartialEq for TensorboardBlobSequence
impl PartialEq for TensorboardBlobSequence
Source§impl Serialize for TensorboardBlobSequence
impl Serialize for TensorboardBlobSequence
impl StructuralPartialEq for TensorboardBlobSequence
Auto Trait Implementations§
impl Freeze for TensorboardBlobSequence
impl RefUnwindSafe for TensorboardBlobSequence
impl Send for TensorboardBlobSequence
impl Sync for TensorboardBlobSequence
impl Unpin for TensorboardBlobSequence
impl UnwindSafe for TensorboardBlobSequence
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