pub struct ContentTreeLimits {
pub publication_file_bytes: ContentFileByteLimit,
pub post_file_bytes: ContentFileByteLimit,
pub asset_file_bytes: ContentFileByteLimit,
pub total_tree_bytes: ContentTreeByteLimit,
pub entries: ContentEntryLimit,
pub depth: ContentDepthLimit,
pub path_bytes: ContentPathByteLimit,
}Fields§
§publication_file_bytes: ContentFileByteLimit§post_file_bytes: ContentFileByteLimit§asset_file_bytes: ContentFileByteLimit§total_tree_bytes: ContentTreeByteLimit§entries: ContentEntryLimit§depth: ContentDepthLimit§path_bytes: ContentPathByteLimitImplementations§
Source§impl ContentTreeLimits
impl ContentTreeLimits
pub fn new( publication_file_bytes: ContentFileByteLimit, post_file_bytes: ContentFileByteLimit, asset_file_bytes: ContentFileByteLimit, total_tree_bytes: ContentTreeByteLimit, entries: ContentEntryLimit, depth: ContentDepthLimit, path_bytes: ContentPathByteLimit, ) -> Result<Self, ContentTreeLimitsError>
Trait Implementations§
Source§impl Clone for ContentTreeLimits
impl Clone for ContentTreeLimits
impl Copy for ContentTreeLimits
Source§impl Debug for ContentTreeLimits
impl Debug for ContentTreeLimits
Source§impl Default for ContentTreeLimits
impl Default for ContentTreeLimits
impl Eq for ContentTreeLimits
Source§impl PartialEq for ContentTreeLimits
impl PartialEq for ContentTreeLimits
Source§impl Serialize for ContentTreeLimits
impl Serialize for ContentTreeLimits
impl StructuralPartialEq for ContentTreeLimits
Auto Trait Implementations§
impl Freeze for ContentTreeLimits
impl RefUnwindSafe for ContentTreeLimits
impl Send for ContentTreeLimits
impl Sync for ContentTreeLimits
impl Unpin for ContentTreeLimits
impl UnsafeUnpin for ContentTreeLimits
impl UnwindSafe for ContentTreeLimits
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