pub struct UserDefinedFunctionInput {
pub class_name: Option<String>,
pub function_name: Option<String>,
pub owner_name: Option<String>,
pub owner_type: Option<String>,
pub resource_uris: Option<Vec<ResourceUri>>,
}
Expand description
A structure used to create or update a user-defined function.
Fields§
§class_name: Option<String>
The Java class that contains the function code.
function_name: Option<String>
The name of the function.
owner_name: Option<String>
The owner of the function.
owner_type: Option<String>
The owner type.
resource_uris: Option<Vec<ResourceUri>>
The resource URIs for the function.
Trait Implementations§
Source§impl Clone for UserDefinedFunctionInput
impl Clone for UserDefinedFunctionInput
Source§fn clone(&self) -> UserDefinedFunctionInput
fn clone(&self) -> UserDefinedFunctionInput
Returns a duplicate 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 UserDefinedFunctionInput
impl Debug for UserDefinedFunctionInput
Source§impl Default for UserDefinedFunctionInput
impl Default for UserDefinedFunctionInput
Source§fn default() -> UserDefinedFunctionInput
fn default() -> UserDefinedFunctionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UserDefinedFunctionInput
impl PartialEq for UserDefinedFunctionInput
Source§impl Serialize for UserDefinedFunctionInput
impl Serialize for UserDefinedFunctionInput
impl StructuralPartialEq for UserDefinedFunctionInput
Auto Trait Implementations§
impl Freeze for UserDefinedFunctionInput
impl RefUnwindSafe for UserDefinedFunctionInput
impl Send for UserDefinedFunctionInput
impl Sync for UserDefinedFunctionInput
impl Unpin for UserDefinedFunctionInput
impl UnwindSafe for UserDefinedFunctionInput
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