pub enum FunctionVisibility {
Private,
ClientCallable,
}Expand description
The visibility of a function (reducer or procedure).
Variants§
Private
Not callable by arbitrary clients.
Still callable by the module owner, collaborators, and internal module code.
Enabled for lifecycle reducers and scheduled functions by default.
ClientCallable
Callable from client code.
Trait Implementations§
Source§impl Clone for FunctionVisibility
impl Clone for FunctionVisibility
Source§fn clone(&self) -> FunctionVisibility
fn clone(&self) -> FunctionVisibility
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 moreimpl Copy for FunctionVisibility
Source§impl Debug for FunctionVisibility
impl Debug for FunctionVisibility
Source§impl<'de> Deserialize<'de> for FunctionVisibility
impl<'de> Deserialize<'de> for FunctionVisibility
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given
deserializer.impl DirectIndexKey for FunctionVisibility
Source§impl FilterableValue for FunctionVisibility
impl FilterableValue for FunctionVisibility
type Column = FunctionVisibility
Source§impl FilterableValue for &FunctionVisibility
impl FilterableValue for &FunctionVisibility
type Column = FunctionVisibility
Source§impl Serialize for FunctionVisibility
impl Serialize for FunctionVisibility
Source§impl SpacetimeType for FunctionVisibility
impl SpacetimeType for FunctionVisibility
Source§fn make_type<S: TypespaceBuilder>(__typespace: &mut S) -> AlgebraicType
fn make_type<S: TypespaceBuilder>(__typespace: &mut S) -> AlgebraicType
Returns an
AlgebraicType representing the type for Self in SATS
and in the typing context in typespace. This is used by the
automatic type registration system in Rust modules. Read moreAuto Trait Implementations§
impl Freeze for FunctionVisibility
impl RefUnwindSafe for FunctionVisibility
impl Send for FunctionVisibility
impl Sync for FunctionVisibility
impl Unpin for FunctionVisibility
impl UnsafeUnpin for FunctionVisibility
impl UnwindSafe for FunctionVisibility
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Col, Arg> IndexScanRangeBoundsTerminator for Argwhere
Arg: FilterableValue<Column = Col>,
impl<Col, Arg> IndexScanRangeBoundsTerminator for Argwhere
Arg: FilterableValue<Column = Col>,
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 moreSource§impl<T> Satn for T
impl<T> Satn for T
Source§fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the SATN data format into the formatter
f.Source§fn fmt_psql(
&self,
f: &mut Formatter<'_>,
ty: &PsqlType<'_>,
) -> Result<(), Error>
fn fmt_psql( &self, f: &mut Formatter<'_>, ty: &PsqlType<'_>, ) -> Result<(), Error>
Formats the value using the postgres SATN(PsqlFormatter { f }, /* PsqlType */) formatter
f.Source§fn to_satn(&self) -> String
fn to_satn(&self) -> String
Formats the value using the SATN data format into the returned
String.Source§fn to_satn_pretty(&self) -> String
fn to_satn_pretty(&self) -> String
Pretty prints the value using the SATN data format into the returned
String.