Skip to main content

Board

Struct Board 

Source
pub struct Board {
Show 29 fields pub board: String, pub title: String, pub meta_description: String, pub ws_board: u8, pub per_page: u32, pub pages: u32, pub max_filesize: u64, pub max_webm_filesize: u64, pub max_comment_chars: u32, pub max_webm_duration: u32, pub bump_limit: u32, pub image_limit: u32, pub cooldowns: Cooldowns, pub spoilers: u8, pub custom_spoilers: u8, pub is_archived: u8, pub country_flags: u8, pub user_ids: u8, pub oekaki: u8, pub sjis_tags: u8, pub code_tags: u8, pub math_tags: u8, pub text_only: u8, pub forced_anon: u8, pub webm_audio: u8, pub require_subject: u8, pub min_image_width: u32, pub min_image_height: u32, pub board_flags: Option<HashMap<String, String>>,
}
Expand description

A single board, as returned by boards.json.

Fields§

§board: String

Short slug.

§title: String§meta_description: String§ws_board: u8

1 if work-safe.

§per_page: u32§pages: u32§max_filesize: u64§max_webm_filesize: u64§max_comment_chars: u32§max_webm_duration: u32§bump_limit: u32§image_limit: u32§cooldowns: Cooldowns§spoilers: u8§custom_spoilers: u8§is_archived: u8§country_flags: u8§user_ids: u8§oekaki: u8§sjis_tags: u8§code_tags: u8§math_tags: u8§text_only: u8§forced_anon: u8§webm_audio: u8§require_subject: u8§min_image_width: u32§min_image_height: u32§board_flags: Option<HashMap<String, String>>

Map of board-specific flag codes to display names, if the board has them.

Implementations§

Source§

impl Board

Source

pub fn is_ws(&self) -> bool

Examples found in repository?
examples/list_boards.rs (line 9)
5async fn main() -> chan::Result<()> {
6    let client = chan::Client::new();
7    let boards = client.get_boards().await?;
8    for b in &boards {
9        let ws = if b.is_ws() { "ws" } else { "nsfw" };
10        println!("/{:>3}/ [{}] {}", b.board, ws, b.title);
11    }
12    println!("\n{} boards.", boards.len());
13    Ok(())
14}
Source

pub fn has_archive(&self) -> bool

Trait Implementations§

Source§

impl Clone for Board

Source§

fn clone(&self) -> Board

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Board

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Board

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for Board

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl Freeze for Board

§

impl RefUnwindSafe for Board

§

impl Send for Board

§

impl Sync for Board

§

impl Unpin for Board

§

impl UnsafeUnpin for Board

§

impl UnwindSafe for Board

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more