pub struct Conv3dOptionsDescription {
pub stride: [usize; 3],
pub padding: [usize; 3],
pub dilation: [usize; 3],
pub groups: usize,
}Available on crate feature
repr only.Fields§
§stride: [usize; 3]§padding: [usize; 3]§dilation: [usize; 3]§groups: usizeTrait Implementations§
Source§impl Clone for Conv3dOptionsDescription
impl Clone for Conv3dOptionsDescription
Source§fn clone(&self) -> Conv3dOptionsDescription
fn clone(&self) -> Conv3dOptionsDescription
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 Conv3dOptionsDescription
impl Debug for Conv3dOptionsDescription
Source§impl<'de> Deserialize<'de> for Conv3dOptionsDescription
impl<'de> Deserialize<'de> for Conv3dOptionsDescription
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 From<Conv3dOptionsDescription> for ConvOptions<3>
impl From<Conv3dOptionsDescription> for ConvOptions<3>
Source§fn from(val: Conv3dOptionsDescription) -> Self
fn from(val: Conv3dOptionsDescription) -> Self
Converts to this type from the input type.
Source§impl From<ConvOptions<3>> for Conv3dOptionsDescription
impl From<ConvOptions<3>> for Conv3dOptionsDescription
Source§fn from(value: ConvOptions<3>) -> Self
fn from(value: ConvOptions<3>) -> Self
Converts to this type from the input type.
Source§impl Hash for Conv3dOptionsDescription
impl Hash for Conv3dOptionsDescription
Source§impl PartialEq for Conv3dOptionsDescription
impl PartialEq for Conv3dOptionsDescription
Source§impl Serialize for Conv3dOptionsDescription
impl Serialize for Conv3dOptionsDescription
impl StructuralPartialEq for Conv3dOptionsDescription
Auto Trait Implementations§
impl Freeze for Conv3dOptionsDescription
impl RefUnwindSafe for Conv3dOptionsDescription
impl Send for Conv3dOptionsDescription
impl Sync for Conv3dOptionsDescription
impl Unpin for Conv3dOptionsDescription
impl UnwindSafe for Conv3dOptionsDescription
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more