pub struct InstanceInfo {
pub instance_name: String,
pub description: Option<String>,
pub version: String,
pub message_limit: usize,
pub oprish_url: String,
pub pandemonium_url: String,
pub effis_url: String,
pub file_size: u64,
pub attachment_file_size: u64,
pub rate_limits: Option<InstanceRateLimits>,
}Expand description
Represents information about the connected Eludris instance.
§Example
{
"instance_name": "eludris",
"description": "The *almost* official Eludris instance - ooliver.",
"version": "0.3.2",
"message_limit": 2000,
"oprish_url": "https://api.eludris.gay",
"pandemonium_url": "wss://ws.eludris.gay/",
"effis_url": "https://cdn.eludris.gay",
"file_size": 20000000,
"attachment_file_size": 25000000,
"rate_limits": {
"oprish": {
"info": {
"reset_after": 5,
"limit": 2
},
"message_create": {
"reset_after": 5,
"limit": 10
},
"rate_limits": {
"reset_after": 5,
"limit": 2
}
},
"pandemonium": {
"reset_after": 10,
"limit": 5
},
"effis": {
"assets": {
"reset_after": 60,
"limit": 5,
"file_size_limit": 30000000
},
"attachments": {
"reset_after": 180,
"limit": 20,
"file_size_limit": 500000000
},
"fetch_file": {
"reset_after": 60,
"limit": 30
}
}
}
}Fields§
§instance_name: StringThe name of the instance.
description: Option<String>The description of the instance.
This is between 1 and 2048 characters long.
version: StringThe Eludris version the instance is running.
message_limit: usizeThe maximum length of a message’s content.
oprish_url: StringThe URL of the instance’s Oprish (REST API) endpoint.
pandemonium_url: StringThe URL of the instance’s Pandemonium (WebSocket API) endpoint.
effis_url: StringThe URL of the instance’s Effis (CDN) endpoint.
file_size: u64The maximum file size (in bytes) of an asset.
attachment_file_size: u64The maximum file size (in bytes) of an attachment.
rate_limits: Option<InstanceRateLimits>The rate limits that apply to the connected Eludris instance.
This is not present if the rate_limits query parameter is not set.
Trait Implementations§
Source§impl Clone for InstanceInfo
impl Clone for InstanceInfo
Source§fn clone(&self) -> InstanceInfo
fn clone(&self) -> InstanceInfo
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 InstanceInfo
impl Debug for InstanceInfo
Source§impl<'de> Deserialize<'de> for InstanceInfo
impl<'de> Deserialize<'de> for InstanceInfo
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 InstanceInfo
impl RefUnwindSafe for InstanceInfo
impl Send for InstanceInfo
impl Sync for InstanceInfo
impl Unpin for InstanceInfo
impl UnwindSafe for InstanceInfo
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