pub struct Param {
pub id: ParamId,
pub site: ParamSiteId,
pub owner: ModuleInstanceId,
pub key: Key,
pub root: String,
pub certainty: Certainty,
pub checkpoint: CheckpointMatch,
}Expand description
One tensor: a site realised at one instance.
Fields§
§id: ParamId§site: ParamSiteId§owner: ModuleInstanceId§key: KeyFully qualified key, prefix + relative key.
root: StringVarBuilder root this tensor lives under. See ModuleInstance::root.
certainty: Certainty§checkpoint: CheckpointMatchTrait Implementations§
Auto Trait Implementations§
impl Freeze for Param
impl RefUnwindSafe for Param
impl Send for Param
impl Sync for Param
impl Unpin for Param
impl UnsafeUnpin for Param
impl UnwindSafe for Param
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