dc_layout 0.39.1

Figma node layout library for Android
Documentation
// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

pub mod dimension_proto;
pub mod dimension_rect;

pub trait IntoTaffy<T> {
    fn into_taffy(self) -> T;
}

pub trait TryIntoTaffy<T> {
    type Error;
    fn try_into_taffy(self) -> Result<T, Self::Error>;
}