//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use objc2::__framework_prelude::*;
use crate::*;
extern_protocol!(
/// [Apple's documentation](https://developer.apple.com/documentation/uikit/uicontentsizecategoryadjusting?language=objc)
pub unsafe trait UIContentSizeCategoryAdjusting:
NSObjectProtocol + MainThreadOnly
{
#[unsafe(method(adjustsFontForContentSizeCategory))]
#[unsafe(method_family = none)]
fn adjustsFontForContentSizeCategory(&self) -> bool;
/// Setter for [`adjustsFontForContentSizeCategory`][Self::adjustsFontForContentSizeCategory].
#[unsafe(method(setAdjustsFontForContentSizeCategory:))]
#[unsafe(method_family = none)]
fn setAdjustsFontForContentSizeCategory(
&self,
adjusts_font_for_content_size_category: bool,
);
}
);