pub struct IntegrationWandb {
pub project: String,
pub entity: Option<String>,
pub name: Option<String>,
pub tags: Option<Value>,
}Expand description
The settings for your integration with Weights and Biases.
Fields§
§project: StringThe name of the project that the new run will be created under.
entity: Option<String>The entity to use for the run.
name: Option<String>A display name to set for the run.
A list of tags to be attached to the newly created run.
Trait Implementations§
Source§impl Clone for IntegrationWandb
impl Clone for IntegrationWandb
Source§fn clone(&self) -> IntegrationWandb
fn clone(&self) -> IntegrationWandb
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntegrationWandb
impl Debug for IntegrationWandb
Source§impl<'de> Deserialize<'de> for IntegrationWandb
impl<'de> Deserialize<'de> for IntegrationWandb
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
Auto Trait Implementations§
impl Freeze for IntegrationWandb
impl RefUnwindSafe for IntegrationWandb
impl Send for IntegrationWandb
impl Sync for IntegrationWandb
impl Unpin for IntegrationWandb
impl UnsafeUnpin for IntegrationWandb
impl UnwindSafe for IntegrationWandb
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