pub struct SetDescriptorFunctionParams {
pub function_id: String,
}Expand description
Parameters for setting the descriptor function on a graph, replacing any existing one
Fields§
§function_id: StringFunction ID — either a UUID or an arbitrary string (e.g. “com.flaxandteal.app/my-func”) which will be converted to a deterministic UUID v5.
Trait Implementations§
Source§impl Clone for SetDescriptorFunctionParams
impl Clone for SetDescriptorFunctionParams
Source§fn clone(&self) -> SetDescriptorFunctionParams
fn clone(&self) -> SetDescriptorFunctionParams
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 SetDescriptorFunctionParams
impl Debug for SetDescriptorFunctionParams
Source§impl<'de> Deserialize<'de> for SetDescriptorFunctionParams
impl<'de> Deserialize<'de> for SetDescriptorFunctionParams
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 SetDescriptorFunctionParams
impl RefUnwindSafe for SetDescriptorFunctionParams
impl Send for SetDescriptorFunctionParams
impl Sync for SetDescriptorFunctionParams
impl Unpin for SetDescriptorFunctionParams
impl UnsafeUnpin for SetDescriptorFunctionParams
impl UnwindSafe for SetDescriptorFunctionParams
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