shrike 0.1.0

AT Protocol library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by lexgen. DO NOT EDIT.

/// SetUpsertSetInput is an alias.
pub type SetUpsertSetInput = crate::api::tools::ozone::SetDefsSet;

/// SetUpsertSetOutput is an alias.
pub type SetUpsertSetOutput = crate::api::tools::ozone::SetDefsSetView;

/// SetUpsertSet — Create or update set metadata
pub async fn set_upsert_set(
    client: &crate::xrpc::Client,
    input: &SetUpsertSetInput,
) -> Result<SetUpsertSetOutput, crate::xrpc::Error> {
    client.procedure("tools.ozone.set.upsertSet", input).await
}